This is a representation of the contents of an Azure backend with resource group, storage account name, container name, and storage account access key details
terraform { | |
backend "azurerm" { | |
resource_group_name = "$(ResourceGroupToStoreTerraformBackendResources)" | |
storage_account_name = "$(UniqueStorageAccountName)" | |
container_name = "$(StorageContainerName)" | |
key = "terraform.tfstate" | |
access_key = "$(StorageAccountAccessKey)" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment