-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add extra private dns zones and link them top the vnet. * Improve README for diagnostic settings * Rename additional_private_dns_zones to resolvable_private_dns_zones Add output resolvable_private_dns_zones * Change resolvable private dns zone link name * Change output for resolvable private dns zones * Fix regexp for output * Fix typo
- Loading branch information
Showing
11 changed files
with
198 additions
and
103 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,24 @@ | ||
module "hub" { | ||
source = "../../" | ||
|
||
name = "hub" | ||
resource_group_name = "networking-hub" | ||
location = "westeurope" | ||
address_space = "10.0.0.0/24" | ||
|
||
public_ip_names = [ | ||
"fw-public" | ||
] | ||
|
||
private_dns_zone = "cloud.mycorp.com" | ||
|
||
resolvable_private_dns_zones = [ | ||
"example.postgres.database.azure.com", | ||
"example2.postgres.database.azure.com", | ||
] | ||
|
||
peering_assignment = [ | ||
"12345678-1234-1234-123456789012" | ||
] | ||
|
||
} |
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
Oops, something went wrong.