Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "go.sum|^.secrets.baseline$",
"lines": null
},
"generated_at": "2023-12-15T18:26:42Z",
"generated_at": "2023-12-16T18:26:42Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down
17 changes: 3 additions & 14 deletions patterns/mixed/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,20 +160,9 @@ locals {
##############################################################################
# VPE
##############################################################################
virtual_private_endpoints = [{
service_name = "cos"
service_type = "cloud-object-storage"
resource_group = "${var.prefix}-service-rg"
vpcs = [
# Create VPE for each VPC in VPE tier
for network in module.dynamic_values.vpc_list :
{
name = network
subnets = ["vpe-zone-1", "vpe-zone-2", "vpe-zone-3"]
security_group_name = "${network}-vpe-sg"
}
]
}]
# By default, do not create any VPEs
virtual_private_endpoints = []

##############################################################################

##############################################################################
Expand Down
17 changes: 3 additions & 14 deletions patterns/roks/module/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -144,20 +144,9 @@ locals {
##############################################################################
# VPE
##############################################################################
virtual_private_endpoints = [{
service_name = "cos"
service_type = "cloud-object-storage"
resource_group = "${var.prefix}-service-rg"
vpcs = [
# Create VPE for each VPC in VPE tier
for network in module.dynamic_values.vpc_list :
{
name = network
subnets = ["vpe-zone-1", "vpe-zone-2", "vpe-zone-3"]
security_group_name = "${network}-vpe-sg"
}
]
}]
# By default, do not create any VPEs
virtual_private_endpoints = []

##############################################################################

##############################################################################
Expand Down
17 changes: 3 additions & 14 deletions patterns/vpc/module/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,20 +83,9 @@ locals {
##############################################################################
# VPE
##############################################################################
virtual_private_endpoints = [{
service_name = "cos"
service_type = "cloud-object-storage"
resource_group = "${var.prefix}-service-rg"
vpcs = [
# Create VPE for each VPC in VPE tier
for network in module.dynamic_values.vpc_list :
{
name = network
subnets = ["vpe-zone-1", "vpe-zone-2", "vpe-zone-3"]
security_group_name = "${network}-vpe-sg"
}
]
}]
# By default, do not create any VPEs
virtual_private_endpoints = []

##############################################################################

##############################################################################
Expand Down
17 changes: 3 additions & 14 deletions patterns/vsi/module/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,9 @@ locals {
##############################################################################
# VPE
##############################################################################
virtual_private_endpoints = [{
service_name = "cos"
service_type = "cloud-object-storage"
resource_group = "${var.prefix}-service-rg"
vpcs = [
# Create VPE for each VPC in VPE tier
for network in module.dynamic_values.vpc_list :
{
name = network
subnets = ["vpe-zone-1", "vpe-zone-2", "vpe-zone-3"]
security_group_name = "${network}-vpe-sg"
}
]
}]
# By default, do not create any VPEs
virtual_private_endpoints = []

##############################################################################

##############################################################################
Expand Down