Skip to content
Open
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
call-terraform-ci-pipeline:
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-terraform-module-ci-v2.yml@v1.22.4
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-terraform-module-ci-v2.yml@v1.23.2
secrets: inherit
with:
craSCCv2: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ on:

jobs:
call-terraform-release-pipeline:
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.22.4
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.23.2
secrets: inherit
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "^.secrets.baseline$",
"lines": null
},
"generated_at": "2025-09-29T12:05:07Z",
"generated_at": "2025-10-19T00:02:43Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down Expand Up @@ -250,7 +250,7 @@
}
]
},
"version": "0.13.1+ibm.62.dss",
"version": "0.13.1+ibm.64.dss",
"word_list": {
"file": null,
"hash": null
Expand Down
2 changes: 1 addition & 1 deletion examples/create_vpc/modules/landing_zone_vpc/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "create_vpc" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.23.6"
version = "8.6.0"
prefix = local.prefix
region = local.region
tags = local.tags
Expand Down
4 changes: 2 additions & 2 deletions modules/common/scripts/prepare_scale_inv_ini.py
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ def initialize_scale_ces_details(
export_node_ip_map = [
{protocol_cluster_instance_name.split(".")[0]: ip}
for protocol_cluster_instance_name, ip in zip(
protocol_cluster_instance_names, export_ip_pool
protocol_cluster_instance_names, export_ip_pool, strict=False
)
]

Expand Down Expand Up @@ -1638,7 +1638,7 @@ def initialize_scale_ces_details(
node_template = ""
for each_entry in node_details:
if ARGUMENTS.bastion_ssh_private_key is None:
each_entry = each_entry + " " + "ansible_ssh_common_args=" ""
each_entry = each_entry + " " + "ansible_ssh_common_args="
node_template = node_template + each_entry + "\n"
else:
proxy_command = f"ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -W %h:%p {ARGUMENTS.bastion_user}@{ARGUMENTS.bastion_ip} -i {ARGUMENTS.bastion_ssh_private_key}"
Expand Down
2 changes: 1 addition & 1 deletion modules/dedicated_host/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module "dedicated_host" {
source = "terraform-ibm-modules/dedicated-host/ibm"
version = "1.1.0"
version = "2.0.1"
dedicated_hosts = [
{
host_group_name = "${var.prefix}-dhgroup"
Expand Down
6 changes: 3 additions & 3 deletions modules/deployer/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module "ssh_key" {
module "bastion_sg" {
count = var.enable_deployer && var.login_security_group_name == null ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.8.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-bastion-sg", local.prefix)
Expand All @@ -48,7 +48,7 @@ module "bastion_sg" {
module "bastion_vsi" {
count = (var.enable_deployer && var.bastion_instance_name == null) ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand All @@ -74,7 +74,7 @@ module "bastion_vsi" {
module "deployer_vsi" {
count = local.enable_deployer ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.6"
version = "5.12.0"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand Down
2 changes: 1 addition & 1 deletion modules/landing_zone/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "landing_zone" {
count = var.enable_landing_zone ? 1 : 0
source = "terraform-ibm-modules/landing-zone/ibm"
version = "8.4.3"
version = "8.8.0"
prefix = local.prefix
region = local.region
tags = local.tags
Expand Down
34 changes: 17 additions & 17 deletions modules/landing_zone_vsi/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module "storage_key" {
module "client_sg" {
count = local.enable_client && var.client_security_group_name == null ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.8.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-client-sg", local.prefix)
Expand All @@ -90,7 +90,7 @@ module "client_sg" {
module "compute_sg" {
count = local.enable_compute && var.compute_security_group_name == null ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.8.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-comp-sg", local.prefix)
Expand All @@ -101,7 +101,7 @@ module "compute_sg" {
module "bastion_sg_existing" {
count = var.login_security_group_name == null ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.8.0"
resource_group = var.resource_group
add_ibm_cloud_internal_rules = false
use_existing_security_group_id = true
Expand All @@ -113,7 +113,7 @@ module "bastion_sg_existing" {
module "nfs_storage_sg" {
count = var.storage_security_group_id != "" ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.8.0"
resource_group = var.resource_group
add_ibm_cloud_internal_rules = true
use_existing_security_group_id = true
Expand All @@ -125,7 +125,7 @@ module "nfs_storage_sg" {
module "storage_sg" {
count = local.enable_storage && var.storage_security_group_name == null ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.8.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-strg-sg", local.prefix)
Expand All @@ -136,7 +136,7 @@ module "storage_sg" {
module "login_vsi" {
count = var.scheduler == "LSF" ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.6"
version = "5.12.0"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand All @@ -161,7 +161,7 @@ module "login_vsi" {
module "management_vsi" {
count = length(var.management_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = var.management_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -185,7 +185,7 @@ module "management_vsi" {
module "compute_vsi" {
count = length(var.static_compute_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = var.static_compute_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand Down Expand Up @@ -215,7 +215,7 @@ module "compute_vsi" {
module "compute_cluster_management_vsi" {
count = var.scheduler == "Scale" && local.enable_compute ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand All @@ -242,7 +242,7 @@ module "compute_cluster_management_vsi" {
module "storage_vsi" {
count = var.scheduler == "Scale" ? (length(var.storage_instances) > 0 && var.storage_type != "persistent" ? 1 : 0) : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = var.storage_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand Down Expand Up @@ -273,7 +273,7 @@ module "storage_vsi" {
module "storage_cluster_management_vsi" {
count = var.scheduler == "Scale" ? length(var.storage_instances) : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand Down Expand Up @@ -301,7 +301,7 @@ module "storage_cluster_management_vsi" {
module "storage_cluster_tie_breaker_vsi" {
count = var.scheduler == "Scale" ? (var.storage_type != "persistent" ? 1 : 0) : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand Down Expand Up @@ -330,7 +330,7 @@ module "storage_cluster_tie_breaker_vsi" {
module "client_vsi" {
count = var.scheduler == "Scale" ? length(var.client_instances) : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.6"
version = "5.12.0"
vsi_per_subnet = var.client_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -353,7 +353,7 @@ module "client_vsi" {
module "protocol_vsi" {
count = var.scheduler == "Scale" ? ((local.enable_protocol && var.colocate_protocol_instances == false && local.ces_server_type == false) ? 1 : 0) : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.16"
version = "5.12.0"
vsi_per_subnet = var.protocol_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand Down Expand Up @@ -383,7 +383,7 @@ module "protocol_vsi" {
module "afm_vsi" {
count = var.scheduler == "Scale" ? ((local.afm_server_type == false && local.enable_afm) ? 1 : 0) : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.6"
version = "5.12.0"
vsi_per_subnet = var.afm_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -407,7 +407,7 @@ module "afm_vsi" {
module "gklm_vsi" {
count = var.scheduler == "Scale" ? (var.scale_encryption_enabled == true && var.scale_encryption_type == "gklm" ? 1 : 0) : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.6"
version = "5.12.0"
vsi_per_subnet = var.gklm_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -430,7 +430,7 @@ module "gklm_vsi" {
module "ldap_vsi" {
count = var.enable_ldap == true && var.ldap_server == "null" ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.4.6"
version = "5.12.0"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand Down
2 changes: 1 addition & 1 deletion modules/observability_instance/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ locals {
module "observability_instance" {
# Replace "master" with a GIT release version to lock into a specific release
source = "terraform-ibm-modules/observability-instances/ibm"
version = "3.3.1"
version = "3.5.3"
region = var.location
resource_group_id = var.rg

Expand Down
4 changes: 2 additions & 2 deletions modules/security/sccwp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ provider "restapi" {
module "app_config" {
count = var.enable_deployer == false && var.sccwp_enable && var.cspm_enabled ? 1 : 0
source = "terraform-ibm-modules/app-configuration/ibm"
version = "1.8.2"
version = "1.12.6"
region = var.region
resource_group_id = data.ibm_resource_group.existing_resource_group[0].id
app_config_plan = var.app_config_plan
Expand All @@ -25,7 +25,7 @@ module "app_config" {
module "scc_workload_protection" {
count = var.enable_deployer == false && var.sccwp_enable ? 1 : 0
source = "terraform-ibm-modules/scc-workload-protection/ibm"
version = "1.10.0"
version = "1.13.7"
region = var.region
name = var.prefix
resource_group_id = data.ibm_resource_group.existing_resource_group[0].id
Expand Down
2 changes: 1 addition & 1 deletion solutions/custom/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.68.1, < 2.0.0"
version = ">= 1.84.1, < 2.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion solutions/hpcaas/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.68.1, < 2.0.0"
version = ">= 1.84.1, < 2.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion solutions/lsf/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.68.1, < 2.0.0"
version = ">= 1.84.1, < 2.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion solutions/scale/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.68.1, < 2.0.0"
version = ">= 1.84.1, < 2.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion solutions/slurm/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.68.1, < 2.0.0"
version = ">= 1.84.1, < 2.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion solutions/symphony/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.68.1, < 2.0.0"
version = ">= 1.84.1, < 2.0.0"
}
}
}
Expand Down
Loading