Skip to content

Commit 343813a

Browse files
fix: use subnet variables for no_proxy_hosts
1 parent 8aa2901 commit 343813a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

solutions/ibm-catalog/sap-ready-to-go/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ locals {
3131
squid = {
3232
enable = true
3333
squid_server_ip_port = module.standard.proxy_host_or_ip_port
34-
no_proxy_hosts = "161.0.0.0/8,10.0.0.0/8"
34+
no_proxy_hosts = "161.0.0.0/0,${var.vpc_subnet_cidrs.vpn},${var.vpc_subnet_cidrs.mgmt},${var.vpc_subnet_cidrs.vpe},${var.vpc_subnet_cidrs.edge},${var.powervs_sap_network_cidr != null ? "${var.powervs_sap_network_cidr}," : ""}${var.client_to_site_vpn.client_ip_pool}"
3535
}
3636
nfs = {
3737
enable = true

solutions/ibm-catalog/sap-s4hana-bw4hana/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ locals {
3131
squid = {
3232
enable = true
3333
squid_server_ip_port = module.standard.proxy_host_or_ip_port
34-
no_proxy_hosts = "161.0.0.0/8,10.0.0.0/8"
34+
no_proxy_hosts = "161.0.0.0/0,${var.vpc_subnet_cidrs.vpn},${var.vpc_subnet_cidrs.mgmt},${var.vpc_subnet_cidrs.vpe},${var.vpc_subnet_cidrs.edge},${var.powervs_sap_network_cidr != null ? "${var.powervs_sap_network_cidr}," : ""}${var.client_to_site_vpn.client_ip_pool}"
3535
}
3636
nfs = {
3737
enable = true

0 commit comments

Comments
 (0)