From 5217ecb002df0be8e341381146171d2ee0e9b20c Mon Sep 17 00:00:00 2001 From: matiaszilli Date: Wed, 18 Nov 2020 12:33:24 +0100 Subject: [PATCH] r/aws_elasticsearch_domain: Change enforce_https to Optional and Default to True --- aws/resource_aws_elasticsearch_domain.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aws/resource_aws_elasticsearch_domain.go b/aws/resource_aws_elasticsearch_domain.go index b323d9e368db..d7a5370d42c4 100644 --- a/aws/resource_aws_elasticsearch_domain.go +++ b/aws/resource_aws_elasticsearch_domain.go @@ -140,7 +140,8 @@ func resourceAwsElasticSearchDomain() *schema.Resource { Schema: map[string]*schema.Schema{ "enforce_https": { Type: schema.TypeBool, - Required: true, + Optional: true, + Default: true, }, "tls_security_policy": { Type: schema.TypeString,