From 56a16079f993b1c4d8614e5755c9252a37ac12f8 Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Thu, 29 Feb 2024 20:55:04 -0600 Subject: [PATCH] Fix: string is not an available format for env0_configuration_variable --- env0/resource_configuration_variable.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env0/resource_configuration_variable.go b/env0/resource_configuration_variable.go index 99738a2c..91fb5f08 100644 --- a/env0/resource_configuration_variable.go +++ b/env0/resource_configuration_variable.go @@ -86,7 +86,7 @@ func resourceConfigurationVariable() *schema.Resource { }, "format": { Type: schema.TypeString, - Description: "specifies the format of the configuration value (HCL/JSON)", + Description: "specifies the format of the configuration value ('HCL' or 'JSON'). If none is specified, 'JSON' and 'HCL' values will be considered to be a 'string' (text) type", Default: "", Optional: true, ValidateFunc: ValidateConfigurationPropertySchema,