-
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
r/aws_opensearch_domain: Remove engine_version
default
#31568
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.
Looks good! 🚀
Needs a CHANGELOG entry
--- PASS: TestAccOpenSearchDomain_Policy_basic (1698.80s)
--- PASS: TestAccOpenSearchDomain_Policy_ignoreEquivalent (1886.91s)
--- PASS: TestAccOpenSearchDomain_AdvancedSecurityOptions_disabled (2031.17s)
--- PASS: TestAccOpenSearchDomain_LogPublishingOptions_searchSlowLogs (2100.97s)
--- PASS: TestAccOpenSearchDomain_basic (2237.72s)
--- PASS: TestAccOpenSearchDomain_Encryption_nodeToNode (2307.58s)
--- PASS: TestAccOpenSearchDomain_tags (2509.26s)
--- PASS: TestAccOpenSearchDomain_Encryption_atRestDefaultKey (2784.22s)
--- PASS: TestAccOpenSearchDomain_Encryption_atRestSpecifyKey (2787.04s)
--- PASS: TestAccOpenSearchDomain_complex (2839.57s)
--- PASS: TestAccOpenSearchDomain_disappears (2943.37s)
--- PASS: TestAccOpenSearchDomain_CognitoOptions_update (3374.31s)
--- PASS: TestAccOpenSearchDomain_duplicate (1220.57s)
--- PASS: TestAccOpenSearchDomain_LogPublishingOptions_indexSlowLogs (3902.42s)
--- PASS: TestAccOpenSearchDomain_autoTuneOptions (2151.11s)
--- PASS: TestAccOpenSearchDomain_AdvancedSecurityOptions_iam (4199.42s)
--- PASS: TestAccOpenSearchDomain_VolumeType_missing (1713.76s)
--- PASS: TestAccOpenSearchDomain_Encryption_atRestEnableLegacy (4804.27s)
--- PASS: TestAccOpenSearchDomain_AdvancedSecurityOptions_userDB (2727.99s)
--- PASS: TestAccOpenSearchDomain_VolumeType_update (5133.54s)
--- PASS: TestAccOpenSearchDomain_Cluster_warm (5501.66s)
--- PASS: TestAccOpenSearchDomain_v23 (3032.28s)
--- PASS: TestAccOpenSearchDomain_Cluster_coldStorage (4349.07s)
--- PASS: TestAccOpenSearchDomain_Encryption_atRestEnable (6311.84s)
--- PASS: TestAccOpenSearchDomain_LogPublishingOptions_auditLogs (2442.50s)
--- PASS: TestAccOpenSearchDomain_Cluster_update (3715.81s)
--- PASS: TestAccOpenSearchDomain_Encryption_nodeToNodeEnableLegacy (6684.44s)
--- PASS: TestAccOpenSearchDomain_requireHTTPS (3485.21s)
--- PASS: TestAccOpenSearchDomain_customEndpoint (3674.94s)
--- PASS: TestAccOpenSearchDomain_VPC_basic (2425.93s)
--- PASS: TestAccOpenSearchDomain_Encryption_nodeToNodeEnable (7562.81s)
--- PASS: TestAccOpenSearchDomain_LogPublishingOptions_applicationLogs (2778.65s)
--- PASS: TestAccOpenSearchDomain_AdvancedSecurityOptions_anonymousAuth (5661.35s)
--- PASS: TestAccOpenSearchDomain_versionUpdate (5282.14s)
--- PASS: TestAccOpenSearchDomain_CognitoOptions_createAndRemove (3439.65s)
--- PASS: TestAccOpenSearchDomain_VPC_update (4045.83s)
--- PASS: TestAccOpenSearchDomain_VolumeType_gp3ToGP2 (5564.56s)
--- PASS: TestAccOpenSearchDomain_Cluster_dedicatedMaster (5064.78s)
--- PASS: TestAccOpenSearchDomain_VPC_internetToVPCEndpoint (3882.96s)
--- PASS: TestAccOpenSearchDomain_Cluster_zoneAwareness (7377.95s)
--- PASS: TestAccOpenSearchInboundConnectionAccepter_disappears (1815.86s)
--- PASS: TestAccOpenSearchOutboundConnection_disappears (1843.56s)
--- PASS: TestAccOpenSearchInboundConnectionAccepter_basic (1946.26s)
--- PASS: TestAccOpenSearchOutboundConnection_basic (2043.71s)
--- PASS: TestAccOpenSearchDomainPolicy_basic (3103.70s)
This functionality has been released in v5.0.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! |
@@ -82,25 +83,26 @@ func waitForDomainUpdate(ctx context.Context, conn *opensearchservice.OpenSearch | |||
|
|||
return retry.RetryableError( | |||
fmt.Errorf("%q: Timeout while waiting for changes to be processed", domainName)) | |||
}) | |||
}, tfresource.WithDelay(10*time.Minute), tfresource.WithPollInterval(10*time.Second)) |
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 don't think we need to wait 10 minutes for updates. This e.g. costs me 10 minutes to simply update the domain access_policy
.
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
Removes the default
engine_version
value. When omitted, the latest OpenSearch engine version will be applied by the underlying AWS API.Relations
Closes #29558
Output from Acceptance Testing