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