-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some work in dev enviroment - Terraform (#1149)
Co-authored-by: Automatic Update <[email protected]>
- Loading branch information
Showing
10 changed files
with
125 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
locals { | ||
flattened_config = { | ||
flattened_roleassignment = { | ||
for key, value in var.roleassignment : key => { | ||
backup = value.backup | ||
kind = var.kind | ||
|
||
backup = value.backup | ||
kind = var.kind | ||
private_endpoint = var.roleassignment | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ output "data" { | |
description = "storageaccount" | ||
value = azurerm_storage_account.storageaccount | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
locals { | ||
AZ_PRIVATE_DNS_ZONES = [ | ||
"privatelink.database.windows.net", | ||
"privatelink.blob.core.windows.net", | ||
"privatelink.table.core.windows.net", | ||
"privatelink.queue.core.windows.net", | ||
"privatelink.file.core.windows.net", | ||
"privatelink.web.core.windows.net", | ||
"privatelink.dfs.core.windows.net", | ||
"privatelink.documents.azure.com", | ||
"privatelink.mongo.cosmos.azure.com", | ||
"privatelink.cassandra.cosmos.azure.com", | ||
"privatelink.gremlin.cosmos.azure.com", | ||
"privatelink.table.cosmos.azure.com", | ||
"privatelink.postgres.database.azure.com", | ||
"privatelink.mysql.database.azure.com", | ||
"privatelink.mariadb.database.azure.com", | ||
"privatelink.vaultcore.azure.net", | ||
"private.radix.equinor.com" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
output "data" { | ||
description = "IDs of vnet-hub" | ||
value = azurerm_virtual_network.vnet-hub | ||
description = "IDs of virtualnetworks" | ||
value = { | ||
"vnet_hub" = azurerm_virtual_network.vnet-hub | ||
"vnet_subnet" = azurerm_subnet.this | ||
"private_dns_zone" = azurerm_private_dns_zone.this | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters