Created
June 30, 2023 14:29
-
-
Save imartinflores/30b29bd4d18b4579aad90dbd98cf6ff0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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