Since the State centralization configuration explains details of storage configuration live in conf/state.yml, then why in templates section instructs to repeat that same information in the template?
terraform {
backend "azurerm" {
subscription_id = "00000000-0000-0000-0000-000000000000"
resource_group_name = "my-resource-group"
storage_account_name = "my-centralized-terraform-states-account"
container_name = "terraform-states"
Why those values are not templated and tfwrapper is let to read those from the conf/state.yml to fill the template with the values?
Or that is the case but the documentation is not explaining it.
Since the State centralization configuration explains details of storage configuration live in
conf/state.yml, then why in templates section instructs to repeat that same information in the template?Why those values are not templated and
tfwrapperis let to read those from theconf/state.ymlto fill the template with the values?Or that is the case but the documentation is not explaining it.