-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
Read system parameters that exist in config #18486
Conversation
daa1430
to
3acb9cb
Compare
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.
We should always test import when possible. 👍
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.
Looks good! 🚀
Output from acceptance testing in AWS Commercial:
--- PASS: TestAccAWSDocDBClusterParameterGroup_disappears (13.01s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_Description (18.42s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_namePrefix (18.46s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_basic (18.64s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_systemParameter (18.65s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_generatedName (18.72s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_Parameter (29.02s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_Tags (39.63s)
Output from acceptance testing in AWS GovCloud (US):
--- PASS: TestAccAWSDocDBClusterParameterGroup_disappears (17.30s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_generatedName (23.65s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_namePrefix (23.68s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_basic (24.10s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_Description (24.10s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_systemParameter (24.14s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_Parameter (38.56s)
--- PASS: TestAccAWSDocDBClusterParameterGroup_Tags (53.12s)
This has been released in version 3.36.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
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 feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
The current behavior is to only read
user
parameters. If asystem
parameter
is set in the configuration, the plan will result in a diff every time because thesystem
parameters are never read. This changes the behavior to read all parameters, and read user parameters and any parameters that exist in the configuration.Community Note
Closes #13384
Output from acceptance testing: