Skip to content

Instantly share code, notes, and snippets.

@imartinflores
Created June 30, 2023 14:29
Show Gist options
  • Save imartinflores/30b29bd4d18b4579aad90dbd98cf6ff0 to your computer and use it in GitHub Desktop.
Save imartinflores/30b29bd4d18b4579aad90dbd98cf6ff0 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "2.92.0"
}
}
backend "azurerm" {
resource_group_name = "${var.resource_group_name}"
storage_account_name = "storageaccountname"
container_name = "project-tfstate"
key = "project.tfstate"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment