169163334 - Make supernet configurable 169163334 - Makes DNS servers configurable 169163334 - Adds bucket for state storage 169163334 - Adds k8s, keyvault, azuread provider 169163334 - Adds route tables 169163334 - Adds route table associations 169163334 - Adds default routes to route tables and fixes route table association flapping
18 lines
430 B
HCL
18 lines
430 B
HCL
provider "azurerm" {
|
|
version = "=1.38.0"
|
|
}
|
|
|
|
provider "azuread" {
|
|
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
|
|
version = "=0.7.0"
|
|
}
|
|
|
|
terraform {
|
|
backend "azurerm" {
|
|
resource_group_name = "cloudzero-dev-tfstate"
|
|
storage_account_name = "cloudzerodevtfstate"
|
|
container_name = "tfstate"
|
|
key = "dev.terraform.tfstate"
|
|
}
|
|
}
|