-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d167dae
commit 4ee5c7f
Showing
8 changed files
with
128 additions
and
62 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
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,22 @@ | ||
# the zones defined in this file aren't used by the core system, | ||
# but are a preperation for shared/workspace services deployment. | ||
|
||
resource "azurerm_private_dns_zone" "non_core" { | ||
for_each = local.private_dns_zone_names_non_core | ||
name = each.key | ||
resource_group_name = azurerm_resource_group.core.name | ||
tags = local.tre_core_tags | ||
|
||
lifecycle { ignore_changes = [tags] } | ||
} | ||
|
||
# since shared services are in the core network, their dns link could exist once and must be defined here. | ||
resource "azurerm_private_dns_zone_virtual_network_link" "mysql" { | ||
resource_group_name = azurerm_resource_group.core.name | ||
virtual_network_id = module.network.core_vnet_id | ||
private_dns_zone_name = azurerm_private_dns_zone.non_core["privatelink.mysql.database.azure.com"].name | ||
name = azurerm_private_dns_zone.non_core["privatelink.mysql.database.azure.com"].name | ||
registration_enabled = false | ||
tags = local.tre_core_tags | ||
lifecycle { ignore_changes = [tags] } | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.6.0" | ||
__version__ = "0.7.0" |