terraform-aws-elasticsearch icon indicating copy to clipboard operation
terraform-aws-elasticsearch copied to clipboard

Support SAML

Open nitrocode opened this issue 3 years ago • 1 comments

Have a question? Please checkout our Slack Community or visit our Slack Archive.

Slack Community

Describe the Feature

resource "aws_elasticsearch_domain_saml_options" "example" {
  domain_name = aws_elasticsearch_domain.example.domain_name
  saml_options {
    enabled = true
    idp {
      entity_id        = "https://example.com"
      metadata_content = file("./saml-metadata.xml")
    }
  }
}

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

For now, this resource can be created outside of the module and the module's domain_name output can be used as an input to the raw resource.

nitrocode avatar Jan 17 '22 20:01 nitrocode

Would be great to have this feature 🙏

amontalban avatar Jun 06 '22 17:06 amontalban