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
the conformity_azure_account resource does not not read the account tags from the backend. As a consequence of this, tag changes in the backend cannot be taken into account by Terraform. In addition, existing tags are also not added to the Terraform state when a resource is imported into the state and are overwritten on the first terraform apply.
I have encountered the same issue in release v0.4.5:
Terraform will perform the following actions:
# conformity_azure_account.test will be updated in-place
~ resource "conformity_azure_account" "test" {
id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxx"
name = "test"
~ tags = [
- "env",
]
# (3 unchanged attributes hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
Hi,
the
conformity_azure_account
resource does not not read the account tags from the backend. As a consequence of this, tag changes in the backend cannot be taken into account by Terraform. In addition, existing tags are also not added to the Terraform state when a resource is imported into the state and are overwritten on the firstterraform apply
.The
conformity_aws_account
does behave correctly: https://github.com/trendmicro/terraform-provider-conformity/blob/main/conformity/resource_aws_account.go#L157The text was updated successfully, but these errors were encountered: