mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
9 lines
237 B
Terraform
9 lines
237 B
Terraform
terraform {
|
|
backend "azurerm" {
|
|
resource_group_name = "tfstate-rg"
|
|
storage_account_name = "tfstateserviceact" # "tfstateserviceactprod"
|
|
container_name = "tfstate"
|
|
key = "terraform.tfstate"
|
|
}
|
|
}
|