Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jksprattler committed Nov 27, 2024
1 parent c314ef5 commit 55df2c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions cloud_Azure/terraform/module/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,3 @@ output "principal_id" {
value = local.kentik_nsg_flow_exporter_id
description = "Service Principal ID created for Kentik NSG Flow Exporter application"
}

output "flat_nsgs_keys" {
value = local.flat_nsgs
}
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 @@ -19,7 +19,7 @@ resource "azurerm_storage_account" "logs_storage_account" {
for_each = { for nsg in local.flat_nsgs : nsg.key => nsg.value }

# Generate storage account per nsg(s) in each rg
name = substr("sa1" + md5(tostring(each.value.name)), 0, 24)
name = local.nsg_to_storage_account_name
resource_group_name = each.value.rg
location = var.location
account_tier = "Standard"
Expand Down

0 comments on commit 55df2c7

Please sign in to comment.