-
Notifications
You must be signed in to change notification settings - Fork 9.7k
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
provider/aws: Add AutoMinorVersionUpgrade to RDS. #2637
provider/aws: Add AutoMinorVersionUpgrade to RDS. #2637
Conversation
726a67f
to
75eb6eb
Compare
Engine: aws.String(d.Get("engine").(string)), | ||
EngineVersion: aws.String(d.Get("engine_version").(string)), | ||
StorageEncrypted: aws.Boolean(d.Get("storage_encrypted").(bool)), | ||
AutoMinorVersionUpgrade: aws.Boolean(d.Get("auto_minor_version_upgrade").(bool)), |
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.
The default for this value is true
, according to the API:
I think we need to add Default: true
to the schema block, replacing Computed: false
, what do you think?
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.
I think they would like to upgrade MinorVersionUpgrade manually.
When it can be chosen, they should be happy.
ee95d87
to
0ba0dac
Compare
feab32c
to
ef824b9
Compare
8fc861f
to
da19fff
Compare
7edd666
to
256ab6d
Compare
27294f6
to
1501048
Compare
4fdba9b
to
9b226a0
Compare
9b226a0
to
c4c4489
Compare
diff sans whitespace: https://github.com/hashicorp/terraform/pull/2637/files?w=1 @phinze ready for your 👀 |
c4c4489
to
9c92480
Compare
If the user does not specify this attribute in the config, is this default maintained? I wonder if |
7b19c5d
to
b52ca47
Compare
ea85877
to
5e896f4
Compare
5e896f4
to
274e2a1
Compare
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Setting of AutoMinorVersionUpgrade was put in, but setting didn't become effective.
It was changed so that AutoMinorVersionUpgrade might become effective.