9 lines
207 B
Terraform
9 lines
207 B
Terraform
|
|
terraform {
|
||
|
|
backend "azurerm" {
|
||
|
|
resource_group_name = "muscogee-rg"
|
||
|
|
storage_account_name = "povertypoint"
|
||
|
|
container_name = "tfstate"
|
||
|
|
key = "terraform.tfstate"
|
||
|
|
}
|
||
|
|
}
|