terraform-aws-elasticsearch
terraform-aws-elasticsearch copied to clipboard
Support SAML
Have a question? Please checkout our Slack Community or visit our Slack Archive.
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.
Would be great to have this feature 🙏