You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Terraform SDK should be able to parse a state with element of schema.TypeMap with a key containing a dot
Actual Behavior
Terraform SDK is not able to parse a state with element of schema.TypeMap with a key containing a dot... and all subsequent call for plan, apply is failing
Steps to Reproduce
Use terraform code from section: Terraform Configuration Files
Terraform init
Terraform plan (it ends with success)
Terraform apply (it ends with success)
All subsequent action for terraform plan/apply end with failure like mentioned above
The text was updated successfully, but these errors were encountered:
SDK version
Relevant provider source code
The problem occurs if we have field defined as Computed and of Type: schema.TypeMap, like:
And when key of this element contains dot and it's stored in state, like:
Terraform Configuration Files
Debug Output
Following exception is thrown:
Expected Behavior
Terraform SDK should be able to parse a state with element of schema.TypeMap with a key containing a dot
Actual Behavior
Terraform SDK is not able to parse a state with element of schema.TypeMap with a key containing a dot... and all subsequent call for plan, apply is failing
Steps to Reproduce
The text was updated successfully, but these errors were encountered: