Hello,
upgrading from Terraform 0.14.7 to 1.0.11 in my project causes me to print out changes in the planning stage that just add some random optional parameters whose values are empty strings, e.g:
# module.logic-app.azurerm_logic_app_standard.main will be updated in-place
~ resource "azurerm_logic_app_standard" "main" {
+ client_certificate_mode = ""
id = "private_information"
name = "private_information"
# Warning: this attribute value will be marked as sensitive and will not
# display in UI output after applying this change. The value is unchanged.
~ storage_account_access_key = (sensitive value)
tags = {}
# (18 unchanged attributes hidden)
As you can see client_certificate_mode will be added also there has been no change in the whole base outside of the terraform version. Furthermore the access key gets changed?
As this is throughout multiple ressources I would like to avoid this behaviour. How can I fix this?