Skip to content

Commit

Permalink
Using public IP; setting mgmt vpc ACL
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelrn committed Jan 7, 2025
1 parent dc5b6d6 commit 3250096
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions examples/multi_nic_common/example.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ networks = {
firewall_rules = {
allow-mgmt-ingress = {
name = "allow-mgmt-ingress"
source_ranges = ["10.10.10.0/28"] # Set your own management source IP range.
source_ranges = ["1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand Down Expand Up @@ -229,7 +229,7 @@ vmseries = {
vpc_network_key = "fw-mgmt-vpc"
subnetwork_key = "fw-mgmt-sub"
private_ip = "10.10.10.2"
create_public_ip = false
create_public_ip = true
},
{
vpc_network_key = "fw-spoke1-vpc"
Expand Down Expand Up @@ -290,7 +290,7 @@ vmseries = {
vpc_network_key = "fw-mgmt-vpc"
subnetwork_key = "fw-mgmt-sub"
private_ip = "10.10.10.3"
create_public_ip = false
create_public_ip = true
},
{
vpc_network_key = "fw-spoke1-vpc"
Expand Down
4 changes: 2 additions & 2 deletions examples/panorama_standalone/example.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ networks = {
firewall_rules = {
"allow-panorama-ingress" = {
name = "allow-panorama-ingress"
source_ranges = ["172.21.21.0/24"] # Set your own management source IP range.
source_ranges = ["172.21.21.0/24", "1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand All @@ -49,7 +49,7 @@ panoramas = {
subnetwork_key = "panorama-sub"
panorama_version = "panorama-byol-1000"
ssh_keys = "admin:<ssh-rsa AAAA...>"
attach_public_ip = false
attach_public_ip = true
private_static_ip = "172.21.21.2"
}
}
2 changes: 1 addition & 1 deletion examples/vmseries_ha/example.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ networks = {
firewall_rules = {
allow-mgmt-ingress = {
name = "allow-mgmt-ingress"
source_ranges = ["10.10.10.0/24"] # Set your own management source IP range.
source_ranges = ["1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc_peering_common/example.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ networks = {
firewall_rules = {
allow-mgmt-ingress = {
name = "allow-mgmt-ingress"
source_ranges = ["10.10.10.0/28"] # Set your own management source IP range.
source_ranges = ["1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc_peering_common_dual_stack/example.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ networks = {
firewall_rules = {
allow-mgmt-ingress = {
name = "allow-mgmt-ingress"
source_ranges = ["10.10.10.0/28"] # Set your own management source IP range.
source_ranges = ["1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ networks = {
firewall_rules = {
allow-mgmt-ingress = {
name = "allow-mgmt-ingress"
source_ranges = ["10.10.10.0/28", "10.20.10.0/28"] # Set your own management source IP range.
source_ranges = ["1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc_peering_dedicated/example.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ networks = {
firewall_rules = {
allow-mgmt-ingress = {
name = "allow-mgmt-ingress"
source_ranges = ["10.10.10.0/28"] # Set your own management source IP range.
source_ranges = ["1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ networks = {
firewall_rules = {
allow-mgmt-ingress = {
name = "allow-mgmt-ingress"
source_ranges = ["10.10.10.0/28"] # Set your own management source IP range.
source_ranges = ["1.1.1.1/32"] # Set your own management source IP range.
priority = "1000"
allowed_protocol = "all"
allowed_ports = []
Expand Down

0 comments on commit 3250096

Please sign in to comment.