File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,11 @@ resource "aws_elasticsearch_domain" "es_domain" {
33
33
dynamic "domain_endpoint_options" {
34
34
for_each = local. domain_endpoint_options
35
35
content {
36
- enforce_https = lookup (domain_endpoint_options. value , " enforce_https" )
37
- tls_security_policy = lookup (domain_endpoint_options. value , " tls_security_policy" )
36
+ enforce_https = lookup (domain_endpoint_options. value , " enforce_https" )
37
+ tls_security_policy = lookup (domain_endpoint_options. value , " tls_security_policy" )
38
+ custom_endpoint_enabled = lookup (domain_endpoint_options. value , " custom_endpoint_enabled" )
39
+ custom_endpoint = lookup (domain_endpoint_options. value , " custom_endpoint" )
40
+ custom_endpoint_certificate_arn = lookup (domain_endpoint_options. value , " custom_endpoint_certificate_arn" )
38
41
}
39
42
}
40
43
You can’t perform that action at this time.
0 commit comments