Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jksprattler committed Nov 28, 2024
1 parent f4fb300 commit 00f9063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud_Azure/terraform/module/storage_account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ locals {
generated_storage_account_names = [for name in local._alphanum_lowercase_names : substr(name, 0, 24)]
# Generate a map of NSG keys to storage account names
nsg_to_storage_account_name = {
for nsg in local.flat_nsgs : nsg.key => local.generated_storage_account_names
for i, nsg in local.flat_nsgs : nsg.key => local.generated_storage_account_names[i]
}
}

Expand Down

0 comments on commit 00f9063

Please sign in to comment.