############################################################################### # Terraform remote state — Azure Storage Backend # State storage account must be pre-created (see bootstrap/README.md) ############################################################################### terraform { backend "azurerm" { resource_group_name = "rg-mdp-tfstate" storage_account_name = "staccmdptfstate" container_name = "tfstate" key = "terraform.tfstate" use_azuread_auth = true } }