diff --git a/builtin/providers/aws/structure.go b/builtin/providers/aws/structure.go index e54b44d19f69..84f02d9d377c 100644 --- a/builtin/providers/aws/structure.go +++ b/builtin/providers/aws/structure.go @@ -683,7 +683,7 @@ func flattenElastiCacheParameters(list []*elasticache.Parameter) []map[string]in if i.ParameterValue != nil { result = append(result, map[string]interface{}{ "name": strings.ToLower(*i.ParameterName), - "value": strings.ToLower(*i.ParameterValue), + "value": *i.ParameterValue, }) } }