From 050af39bebc2200c1d3fee10ddbe3a6f8b6ee8fc Mon Sep 17 00:00:00 2001 From: Jochen Ehret Date: Wed, 29 Jul 2026 11:08:56 +0200 Subject: [PATCH] Fix azurerm_storage_container config * Azure Terraform Provider v5.0.0 has breaking changes: https://github.com/hashicorp/terraform-provider-azurerm/releases/tag/v5.0.0 --- terraform/azure/templates/storage.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/azure/templates/storage.tf b/terraform/azure/templates/storage.tf index ba1013dbc..ac3971741 100644 --- a/terraform/azure/templates/storage.tf +++ b/terraform/azure/templates/storage.tf @@ -23,12 +23,12 @@ resource "azurerm_storage_account" "bosh" { resource "azurerm_storage_container" "bosh" { name = "bosh" - storage_account_name = "${azurerm_storage_account.bosh.name}" + storage_account_id = "${azurerm_storage_account.bosh.id}" container_access_type = "private" } resource "azurerm_storage_container" "stemcell" { name = "stemcell" - storage_account_name = "${azurerm_storage_account.bosh.name}" + storage_account_id = "${azurerm_storage_account.bosh.id}" container_access_type = "blob" }