-
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
B MQ replication user fix #32454
B MQ replication user fix #32454
Conversation
Community NoteVoting for Prioritization
For Submitters
|
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.
Welcome @kband 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
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.
LGTM 🚀
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.
LGTM 🚀
$ go test -v ./internal/service/mq/... -run='TestDiffUsers' -count=1
--- PASS: TestDiffUsers (0.00s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/mq 3.179s
$ make testacc PKG=mq TESTARGS='-run=TestAccMQBroker_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/mq/... -v -count 1 -parallel 20 -run=TestAccMQBroker_ -timeout 180m
--- PASS: TestAccMQBroker_throughputOptimized (847.81s)
--- PASS: TestAccMQBroker_RabbitMQ_validationAuditLog (875.36s)
--- PASS: TestAccMQBroker_RabbitMQ_basic (880.62s)
--- PASS: TestAccMQBroker_EncryptionOptions_managedKeyDisabled (964.81s)
--- PASS: TestAccMQBroker_EncryptionOptions_managedKeyEnabled (973.29s)
--- PASS: TestAccMQBroker_RabbitMQ_logs (978.09s)
--- PASS: TestAccMQBroker_tags (991.35s)
--- PASS: TestAccMQBroker_ldap (1020.26s)
--- PASS: TestAccMQBroker_disappears (1029.19s)
--- PASS: TestAccMQBroker_EncryptionOptions_kmsKeyID (1044.31s)
--- PASS: TestAccMQBroker_basic (1045.38s)
--- PASS: TestAccMQBroker_RabbitMQ_cluster (1111.19s)
--- PASS: TestAccMQBroker_Update_engineVersion (1206.89s)
--- PASS: TestAccMQBroker_Update_securityGroup (1324.05s)
--- PASS: TestAccMQBroker_Update_users (1384.51s)
--- PASS: TestAccMQBroker_Update_hostInstanceType (1556.84s)
--- PASS: TestAccMQBroker_AllFields_customVPC (1684.88s)
--- PASS: TestAccMQBroker_AllFields_defaultVPC (1875.86s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/mq 1879.171s
@kband thank you for the contribution! 🎉 |
This functionality has been released in v5.8.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. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Adds parameter to the MQ user update/creation API calls, so that new/existing AWS MQ resources don't fail to create/update.
I copied the pre-existing parameter
console_access
, and defaulted it tofalse
.Relations
Closes #32446
References
AWS recently announced support for cross-region data replication.
While this PR does not enable any replication functionality, will hopefully unblock updating of existing, non-replicated Amazon MQ brokers managed by Terraform.
Output from Acceptance Testing