Skip to content

Instantly share code, notes, and snippets.

@kunduso
Created March 24, 2021 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunduso/8452cbd4f83f716dfd9f032f86a68473 to your computer and use it in GitHub Desktop.
Save kunduso/8452cbd4f83f716dfd9f032f86a68473 to your computer and use it in GitHub Desktop.
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