Scenarios/BlueGreen-Deployment-for-AKS/Deployment/Deploy-DNS-Records/provider.tf (17 lines of code) (raw):

#This resource is required only the blue green deployment scenario. terraform { required_providers { azurerm = { source = "hashicorp/azurerm" version = "= 3.9.0" } random = { version = ">=3.0" } } backend "azurerm" { # resource_group_name = "" # Partial configuration, provided during "terraform init" # storage_account_name = "" # Partial configuration, provided during "terraform init" # container_name = "" # Partial configuration, provided during "terraform init" key = "dns-records" } } provider "azurerm" { features {} }