Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(saml): add optional master_backend_role and master_user_name par…
…ams (#9) * Added support to pass optional master_backend_role and master_user_name parameters to cover the aws_elasticsearch_domain_saml_options resource completely. - master_backend_role - (Optional) This backend role from the SAML IdP receives full permissions to the cluster, equivalent to a new master user. - master_user_name - (Optional) This username from the SAML IdP receives full permissions to the cluster, equivalent to a new master user. * fix(error): expected "saml_options.0.master_backend_role" to not be an empty string │ Error: expected "saml_options.0.master_backend_role" to not be an empty string, got │ │ with module.opensearch.aws_elasticsearch_domain_saml_options.opensearch, │ on .terraform/modules/opensearch/main.tf line 86, in resource "aws_elasticsearch_domain_saml_options" "opensearch": │ 86: master_backend_role = var.saml_master_backend_role * fix(error): expected "saml_options.0.master_user_name" to not be an empty string │ Error: expected "saml_options.0.master_user_name" to not be an empty string, got │ │ with module.opensearch.aws_elasticsearch_domain_saml_options.opensearch, │ on .terraform/modules/opensearch/main.tf line 85, in resource "aws_elasticsearch_domain_saml_options" "opensearch": │ 85: master_user_name = var.saml_master_user_name Co-authored-by: Pankaj Kaushal <pankaj.kaushal@greenhousegroup.com> Co-authored-by: Steve Teuber <steve.teuber@idealo.de>
- Loading branch information