-
Notifications
You must be signed in to change notification settings - Fork 1
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
9457962
commit 55ef384
Showing
4 changed files
with
102 additions
and
8 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
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
70 changes: 70 additions & 0 deletions
70
docs/static/examples/tf/accelerator/config/custom_replacements.names.ip_ranges.tfvars
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,70 @@ | ||
# Example of 172.16 IP ranges for a hub and spoke Virtual Network | ||
# NOTE: The 172.16 prefix is only suitable for medium sized deployments as it only supports 1,000,000 ip addresses) | ||
custom_replacements = { | ||
names = { | ||
# IP Ranges Primary | ||
# Regional Address Space: 172.16.0.0/16 | ||
primary_hub_address_space = "172.16.0.0/16" | ||
primary_hub_virtual_network_address_space = "172.16.0.0/22" | ||
primary_firewall_subnet_address_prefix = "172.16.0.0/26" | ||
primary_bastion_subnet_address_prefix = "172.16.0.64/26" | ||
primary_gateway_subnet_address_prefix = "172.16.0.128/27" | ||
primary_private_dns_resolver_subnet_address_prefix = "172.16.0.160/28" | ||
|
||
# IP Ranges Secondary | ||
# Regional Address Space: 172.17.0.0/16 | ||
secondary_hub_address_space = "172.17.0.0/16" | ||
secondary_hub_virtual_network_address_space = "172.17.0.0/22" | ||
secondary_firewall_subnet_address_prefix = "172.17.0.0/26" | ||
secondary_bastion_subnet_address_prefix = "172.17.0.64/26" | ||
secondary_gateway_subnet_address_prefix = "172.17.0.128/27" | ||
secondary_private_dns_resolver_subnet_address_prefix = "172.17.0.160/28" | ||
} | ||
} | ||
# Example of 192.168 IP ranges for a hub and spoke Virtual Network | ||
# NOTE that the 192.168 prefix is only suitable for a small, isngle region deployment as it only supports 65,000 ip addresses) | ||
custom_replacements = { | ||
names = { | ||
# IP Ranges Primary | ||
# Regional Address Space: 192.168.0.0/16 | ||
primary_hub_address_space = "192.168.0.0/16" | ||
primary_hub_virtual_network_address_space = "192.168.0.0/22" | ||
primary_firewall_subnet_address_prefix = "192.168.0.0/26" | ||
primary_bastion_subnet_address_prefix = "192.168.0.64/26" | ||
primary_gateway_subnet_address_prefix = "192.168.0.128/27" | ||
primary_private_dns_resolver_subnet_address_prefix = "192.168.0.160/28" | ||
} | ||
} | ||
|
||
# Example of 172.16 IP ranges for a Virtual WAN | ||
# NOTE: The 172.16 prefix is only suitable for medium sized deployments as it only supports 1,000,000 ip addresses) | ||
custom_replacements = { | ||
names = { | ||
# IP Ranges Primary | ||
# Regional Address Space: 172.16.0.0/16 | ||
primary_hub_address_space = "172.16.0.0/22" | ||
primary_side_car_virtual_network_address_space = "172.16.4.0/22" | ||
primary_bastion_subnet_address_prefix = "172.16.4.0/26" | ||
primary_private_dns_resolver_subnet_address_prefix = "172.16.4.64/28" | ||
|
||
# IP Ranges Secondary | ||
# Regional Address Space: 172.17.0.0/16 | ||
secondary_hub_address_space = "172.17.0.0/22" | ||
secondary_side_car_virtual_network_address_space = "172.17.4.0/22" | ||
secondary_bastion_subnet_address_prefix = "172.17.4.0/26" | ||
secondary_private_dns_resolver_subnet_address_prefix = "172.17.4.64/28" | ||
} | ||
} | ||
# Example of 192.168 IP ranges for a Virtual WAN | ||
# NOTE that the 192.168 prefix is only suitable for a small, isngle region deployment as it only supports 65,000 ip addresses) | ||
custom_replacements = { | ||
names = { | ||
# IP Ranges Primary | ||
# Regional Address Space: 192.168.0.0/16 | ||
primary_hub_address_space = "10.0.0.0/22" | ||
primary_side_car_virtual_network_address_space = "10.0.4.0/22" | ||
primary_bastion_subnet_address_prefix = "10.0.4.0/26" | ||
primary_private_dns_resolver_subnet_address_prefix = "10.0.4.64/28" | ||
} | ||
} | ||
|