Skip to content

Commit f879c5a

Browse files
feat: lon06 now support p10
1 parent a3ce2a8 commit f879c5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

solutions/standard-openshift/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ locals {
1919
client_to_site_vpn = merge(var.client_to_site_vpn, { "powervs_server_routes" : local.powervs_server_routes })
2020

2121
# automatically pick the supported system type unless it's overwritten by the user
22-
p10_unsupported_regions = ["che01", "lon04", "lon06", "mon01", "syd04", "syd05", "tor01", "us-east"] # datacenters that don't support P10 yet
22+
p10_unsupported_regions = ["che01", "lon04", "mon01", "syd04", "syd05", "tor01", "us-east"] # datacenters that don't support P10 yet
2323
system_type = contains(local.p10_unsupported_regions, var.powervs_zone) ? "s922" : "s1022"
2424

2525
cluster_master_node_config = var.cluster_master_node_config.system_type != null ? var.cluster_master_node_config : merge(var.cluster_master_node_config, { system_type : local.system_type })

solutions/standard-plus-vsi/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#####################################################
44

55
locals {
6-
p10_unsupported_regions = ["che01", "lon04", "lon06", "mon01", "syd04", "syd05", "tor01", "us-east"] # datacenters that don't support P10 yet
6+
p10_unsupported_regions = ["che01", "lon04", "mon01", "syd04", "syd05", "tor01", "us-east"] # datacenters that don't support P10 yet
77
server_type = contains(local.p10_unsupported_regions, var.powervs_zone) ? "s922" : "s1022"
88
sap_profile_id = contains(local.p10_unsupported_regions, var.powervs_zone) ? "ush1-4x256" : "sh2-4x256" # sap_profile_id for P9 and P10
99

0 commit comments

Comments
 (0)