From a5b4c50648c44e6436f112b93be33fc20fe4cb21 Mon Sep 17 00:00:00 2001 From: Jan Hentschel Date: Sun, 10 Nov 2024 14:18:17 +0100 Subject: [PATCH] breaking(main)!: Switch to use storage_account_id instead of name --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 28edd1f..8516125 100644 --- a/main.tf +++ b/main.tf @@ -57,7 +57,7 @@ resource "azurerm_storage_account_queue_properties" "this" { resource "azurerm_storage_container" "this" { name = var.storage_container_name - storage_account_name = azurerm_storage_account.this.name + storage_account_id = azurerm_storage_account.this.id container_access_type = var.storage_container_container_access_type }