You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
536 B
HCL

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