Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created March 26, 2019 03:07
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 xximjasonxx/da08782a722bf46dbbebf06dc9d410bc to your computer and use it in GitHub Desktop.
Save xximjasonxx/da08782a722bf46dbbebf06dc9d410bc to your computer and use it in GitHub Desktop.
Portion of Terraform file that dictates provider and backend storage of state
provider "azurerm" {
version = "=1.22.0"
}
terraform {
backend "azurerm" {
resource_group_name = "ListApp-General"
storage_account_name = "listapptfstatestorage"
container_name = "tfstate"
key = "listapp-feedservice"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment