hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.74k stars 9.1k forks source link

[New Resource]: Resource to change the opensearch advanced_security_options #39006

Open santoshugale opened 3 weeks ago

santoshugale commented 3 weeks ago

Description

Currently there is no way to change the advanced_security_options of existing opensearch domain Please consider providing the resource for changing the opensearch advanced security options

Affected Resource(s) and/or Data Source(s)

aws_opensearch_domain

Potential Terraform Configuration

resource "aws_opensearch_domain_advanced_security_options" "example" {
    enabled                                      = false
    anonymous_auth_enabled         = true
    internal_user_database_enabled = true
    master_user_options {
      master_user_name     = "example"
      master_user_password = "Barbarbarbar1!"
    }
}

References

https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/opensearch_domain

Would you like to implement a fix?

None

github-actions[bot] commented 3 weeks ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue