Skip to content

fix(deps): update dependencies #273

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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/[email protected].4
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/[email protected].5
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/[email protected].4
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/[email protected].5
secrets: inherit
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.0.0"
prefix = local.prefix
region = local.region
tags = local.tags
Expand Down
2 changes: 1 addition & 1 deletion modules/baremetal/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module "storage_key" {

module "storage_baremetal" {
source = "terraform-ibm-modules/bare-metal-vpc/ibm"
version = "1.1.0"
version = "1.2.0"
count = length(var.storage_servers)
server_count = var.storage_servers[count.index]["count"]
prefix = count.index == 0 ? local.storage_node_name : format("%s-%s", local.storage_node_name, count.index)
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.0"
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 @@ -19,7 +19,7 @@ module "ssh_key" {
module "bastion_sg" {
count = var.enable_deployer ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.7.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-bastion-sg", local.prefix)
Expand All @@ -30,7 +30,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.0.0"
version = "5.4.18"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand All @@ -54,7 +54,7 @@ module "bastion_vsi" {
module "deployer_vsi" {
count = local.enable_deployer ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
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.2.0"
version = "8.5.3"
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 @@ -73,7 +73,7 @@ module "storage_key" {
module "client_sg" {
count = local.enable_client ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.7.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-client-sg", local.prefix)
Expand All @@ -84,7 +84,7 @@ module "client_sg" {
module "compute_sg" {
count = local.enable_compute ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.7.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-comp-sg", local.prefix)
Expand All @@ -94,7 +94,7 @@ module "compute_sg" {

module "bastion_sg_existing" {
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.7.0"
resource_group = var.resource_group
add_ibm_cloud_internal_rules = false
use_existing_security_group_id = true
Expand All @@ -106,7 +106,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.7.0"
resource_group = var.resource_group
add_ibm_cloud_internal_rules = true
use_existing_security_group_id = true
Expand All @@ -118,7 +118,7 @@ module "nfs_storage_sg" {
module "storage_sg" {
count = local.enable_storage ? 1 : 0
source = "terraform-ibm-modules/security-group/ibm"
version = "2.6.2"
version = "2.7.0"
add_ibm_cloud_internal_rules = true
resource_group = var.resource_group
security_group_name = format("%s-strg-sg", local.prefix)
Expand All @@ -129,7 +129,7 @@ module "storage_sg" {
module "login_vsi" {
count = var.scheduler == "LSF" ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand All @@ -155,7 +155,7 @@ module "login_vsi" {
module "management_vsi" {
count = length(var.management_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = var.management_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -180,7 +180,7 @@ module "management_vsi" {
module "compute_vsi" {
count = length(var.static_compute_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = var.static_compute_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand Down Expand Up @@ -208,7 +208,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.0.0"
version = "5.4.18"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand All @@ -233,7 +233,7 @@ module "compute_cluster_management_vsi" {
module "storage_vsi" {
count = length(var.storage_instances) > 0 && var.storage_type != "persistent" ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = var.storage_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand Down Expand Up @@ -269,7 +269,7 @@ module "storage_vsi" {
module "storage_cluster_management_vsi" {
count = length(var.storage_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand Down Expand Up @@ -297,7 +297,7 @@ module "storage_cluster_management_vsi" {
module "storage_cluster_tie_breaker_vsi" {
count = var.storage_type != "persistent" ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = 1
create_security_group = false
security_group = null
Expand Down Expand Up @@ -326,7 +326,7 @@ module "storage_cluster_tie_breaker_vsi" {
module "client_vsi" {
count = length(var.client_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = var.client_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -351,7 +351,7 @@ module "client_vsi" {
module "protocol_vsi" {
count = var.colocate_protocol_instances == true ? 0 : length(var.protocol_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = var.protocol_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand Down Expand Up @@ -385,7 +385,7 @@ module "protocol_vsi" {
module "afm_vsi" {
count = length(var.afm_instances)
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = var.afm_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -411,7 +411,7 @@ module "afm_vsi" {
module "gklm_vsi" {
count = var.scale_encryption_enabled == true && var.scale_encryption_type == "gklm" ? 1 : 0
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = var.gklm_instances[count.index]["count"]
create_security_group = false
security_group = null
Expand All @@ -435,7 +435,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.0.0"
version = "5.4.18"
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.9.1"
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.10.18"
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.81.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.81.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.81.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.81.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.81.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.81.1, < 2.0.0"
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ module github.com/terraform-ibm-modules/terraform-ibm-hpc

go 1.24.2

toolchain go1.24.3
toolchain go1.25.0

require (
github.com/IBM/go-sdk-core/v5 v5.20.0
github.com/IBM/secrets-manager-go-sdk/v2 v2.0.11
github.com/gruntwork-io/terratest v0.49.0
github.com/IBM/go-sdk-core/v5 v5.21.0
github.com/IBM/secrets-manager-go-sdk/v2 v2.0.14
github.com/gruntwork-io/terratest v0.50.0
github.com/stretchr/testify v1.10.0
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.50.1
golang.org/x/crypto v0.39.0
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.11
golang.org/x/crypto v0.41.0
gopkg.in/yaml.v3 v3.0.1
)

Expand Down
4 changes: 2 additions & 2 deletions tools/image-builder/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "landing_zone" {
source = "terraform-ibm-modules/landing-zone/ibm"
version = "7.4.4"
version = "8.5.3"
prefix = local.prefix
region = local.region
tags = local.tags
Expand Down Expand Up @@ -75,7 +75,7 @@ data "local_file" "encoded_compute_content" {

module "packer_vsi" {
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "5.0.0"
version = "5.4.18"
vsi_per_subnet = 1
image_id = local.packer_image_id
machine_type = local.packer_machine_type
Expand Down