Skip to content

Commit

Permalink
ipv6 default value: INTERNAL
Browse files Browse the repository at this point in the history
  • Loading branch information
Samir-Cit committed Dec 12, 2023
1 parent c99cd06 commit 79ce9f3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 3-networks-dual-svpc/modules/base_env/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ module "restricted_shared_vpc" {
subnet_flow_logs = false
description = "First ${var.env} proxy-only subnet example."
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
},
{
Expand All @@ -252,6 +253,7 @@ module "restricted_shared_vpc" {
subnet_flow_logs = false
description = "Second ${var.env} proxy-only subnet example."
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
}
]
Expand Down Expand Up @@ -303,6 +305,7 @@ module "base_shared_vpc" {
subnet_flow_logs = false
description = "First ${var.env} proxy-only subnet example."
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
},
{
Expand All @@ -312,6 +315,7 @@ module "base_shared_vpc" {
subnet_flow_logs = false
description = "Second ${var.env} proxy-only subnet example."
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
}
]
Expand Down
4 changes: 4 additions & 0 deletions 3-networks-hub-and-spoke/envs/shared/net-hubs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ module "base_shared_vpc" {
subnet_flow_logs = false
description = "Base network hub proxy-only subnet for ${local.default_region1}"
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
},
{
Expand All @@ -224,6 +225,7 @@ module "base_shared_vpc" {
subnet_flow_logs = false
description = "Base network hub proxy-only subnet for ${local.default_region2}"
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
}
]
Expand Down Expand Up @@ -289,6 +291,7 @@ module "restricted_shared_vpc" {
subnet_flow_logs = false
description = "Restricted network hub proxy-only subnet for ${local.default_region1}"
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
},
{
Expand All @@ -298,6 +301,7 @@ module "restricted_shared_vpc" {
subnet_flow_logs = false
description = "Restricted network hub proxy-only subnet for ${local.default_region2}"
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
}
]
Expand Down
4 changes: 4 additions & 0 deletions 3-networks-hub-and-spoke/modules/base_env/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ module "restricted_shared_vpc" {
subnet_flow_logs = false
description = "First ${var.env} proxy-only subnet example."
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
},
{
Expand All @@ -247,6 +248,7 @@ module "restricted_shared_vpc" {
subnet_flow_logs = false
description = "Second ${var.env} proxy-only subnet example."
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
}
]
Expand Down Expand Up @@ -300,6 +302,7 @@ module "base_shared_vpc" {
description = "First ${var.env} proxy-only subnet example."
subnet_flow_logs = false
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
},
{
Expand All @@ -309,6 +312,7 @@ module "base_shared_vpc" {
description = "Second ${var.env} proxy-only subnet example."
subnet_flow_logs = false
role = "ACTIVE"
ipv6_access_type = "INTERNAL"
purpose = "REGIONAL_MANAGED_PROXY"
}
]
Expand Down

0 comments on commit 79ce9f3

Please sign in to comment.