From b889549500ab28038dc85d3a4d9a3fa56d96b798 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Thu, 14 Dec 2023 15:01:26 +0100 Subject: [PATCH] terraform-provider: `region` -> `location` in Azure IAM example --- terraform-provider-constellation/examples/full/azure_cluster.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform-provider-constellation/examples/full/azure_cluster.tf b/terraform-provider-constellation/examples/full/azure_cluster.tf index a8c442f8e..3b17e81c9 100644 --- a/terraform-provider-constellation/examples/full/azure_cluster.tf +++ b/terraform-provider-constellation/examples/full/azure_cluster.tf @@ -38,7 +38,7 @@ resource "random_bytes" "measurement_salt" { module "azure_iam" { // replace $VERSION with the Constellation version you want to use, e.g., v2.14.0 source = "https://github.com/edgelesssys/constellation/releases/download/$VERSION/terraform-module.zip//terraform-module/iam/azure" - region = local.location + location = local.location service_principal_name = "${local.name}-test-sp" resource_group_name = "${local.name}-test-rg" }