Changing to adhere to standards

This commit is contained in:
Tom Archer
2022-03-02 16:47:07 -08:00
parent 112c5b5192
commit c25d0c2f2f
3 changed files with 229 additions and 229 deletions

View File

@ -0,0 +1,21 @@
terraform {
required_version = ">=0.12"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.0"
}
}
backend "azurerm" {
resource_group_name = var.resource_group_name
storage_account_name = var.storage_account_name
container_name = "tfstate"
key = "codelab.microsoft.tfstate"
}
}
provider "azurerm" {
features {}
}