Deployment CRM does not convert bool
, NoneType
, or Sequence
correctly
#1920
Labels
bug
Something isn't working
bool
, NoneType
, or Sequence
correctly
#1920
The issue arises from this line, where the value is substituted inside a quoted string.
While terraform can convert some strings into other types, it does not convert e.g.
"[]"
to the empty list,"None"
tonull
,"True"
totrue
, nor"False"
tofalse
. This leads to errors when deploying AzureBatch, for example, which has a boolean defaultcreate_batch_account
.(Tested with
terraform
version1.7.1
)The text was updated successfully, but these errors were encountered: