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
527 B
HCL
15 lines
527 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-mdp-tfstate"
|
|
storage_account_name = "staccmdptfstate"
|
|
container_name = "tfstate"
|
|
key = "terraform.tfstate"
|
|
use_azuread_auth = true
|
|
}
|
|
}
|