-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix rds db param group default #3802
Changes from all commits
fd15309
b0f1566
af53b37
4ad137b
484fece
435af2c
d3fb91b
4378bef
c86d9c3
7ec1f7a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3093,6 +3093,18 @@ func ProviderFromMeta(metaInfo *tfbridge.MetadataInfo) *tfbridge.ProviderInfo { | |
"description": { | ||
Default: managedByPulumi, | ||
}, | ||
"parameter" : { | ||
Elem: &tfbridge.SchemaInfo{ | ||
Fields: map[string]*tfbridge.SchemaInfo{ | ||
"apply_method": { | ||
// We set the default value in the overlay since | ||
// we remove it in the TF schema in | ||
// provider/pkg/rds/parameter_group.go | ||
Default: &tfbridge.DefaultInfo{Value: "immediate"}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like this compensates for the patch. Very nice. |
||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
Docs: rds.ParameterGroupDocs("upstream"), | ||
}, | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice this looks like it's testing the case where the default might kick in.