File tree Expand file tree Collapse file tree
windows_w_gallery_application Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ resource "azurerm_storage_account" "app_account" {
213213resource "azurerm_storage_container" "app_container" {
214214 name = module.naming.storage_container.name_unique
215215 container_access_type = "blob"
216- storage_account_name = azurerm_storage_account.app_account.name
216+ storage_account_id = azurerm_storage_account.app_account.id
217217}
218218
219219resource "azurerm_storage_blob" "app" {
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ resource "azurerm_storage_account" "app_account" {
188188resource "azurerm_storage_container" "app_container" {
189189 name = module. naming . storage_container . name_unique
190190 container_access_type = " blob"
191- storage_account_name = azurerm_storage_account. app_account . name
191+ storage_account_id = azurerm_storage_account. app_account . id
192192}
193193
194194resource "azurerm_storage_blob" "app" {
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ resource "azurerm_storage_account" "this" {
228228resource "azurerm_storage_container" "this" {
229229 name = "example-sc"
230230 container_access_type = "blob"
231- storage_account_name = azurerm_storage_account.this.name
231+ storage_account_id = azurerm_storage_account.this.id
232232}
233233
234234resource "azurerm_storage_blob" "example1" {
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ resource "azurerm_storage_account" "this" {
209209resource "azurerm_storage_container" "this" {
210210 name = " example-sc"
211211 container_access_type = " blob"
212- storage_account_name = azurerm_storage_account. this . name
212+ storage_account_id = azurerm_storage_account. this . id
213213}
214214
215215resource "azurerm_storage_blob" "example1" {
You can’t perform that action at this time.
0 commit comments