- Updated environment name. - Updated variables. - AKS service principal creds moved to the operator Key Vault.
18 lines
436 B
HCL
18 lines
436 B
HCL
provider "azurerm" {
|
|
version = "=1.40.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-jedidev-jedidevtfstate"
|
|
storage_account_name = "jedidevtfstate"
|
|
container_name = "tfstate"
|
|
key = "dev.terraform.tfstate"
|
|
}
|
|
}
|