201-k8s-cluster-with-aks-applicationgateway-ingress

This commit is contained in:
Tom Archer
2021-08-01 19:42:50 -07:00
parent c06f51bda0
commit da2472a399
5 changed files with 404 additions and 0 deletions

View File

@ -0,0 +1,18 @@
terraform {
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 {}
}