Skip to content

Commit 531c2e7

Browse files
authored
Updating provider with features {}
1 parent e988667 commit 531c2e7

File tree

1 file changed

+6
-1
lines changed
  • projects/microservices/01-currency-exchange-microservice-basic/configuration/iaac/azure/kubernetes

1 file changed

+6
-1
lines changed

projects/microservices/01-currency-exchange-microservice-basic/configuration/iaac/azure/kubernetes/main.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ resource "azurerm_resource_group" "resource_group" {
33
location = var.location
44
}
55

6+
provider "azurerm" {
7+
version = "~>2.0.0"
8+
features {}
9+
}
10+
611
resource "azurerm_kubernetes_cluster" "terraform-k8s" {
712
name = "${var.cluster_name}_${var.environment}"
813
location = azurerm_resource_group.resource_group.location
@@ -40,4 +45,4 @@ terraform {
4045
# key="<<env_name.k8s.tfstate>>" #OVERRIDE in TERRAFORM init
4146
# container_name="<<storage_account_container_name>>" #OVERRIDE in TERRAFORM init
4247
}
43-
}
48+
}

0 commit comments

Comments
 (0)