Skip to content

fix(deps): update terraform dependencies - autoclosed #243

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

Closed
Closed
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 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 = "7.25.13"
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
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.9"
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.9"
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.4.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.9"
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.9"
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.9"
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.9"
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.9"
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.9"
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.9"
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.9"
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.9"
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.9"
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.9"
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.9"
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.8.12"
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.13"
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.0, < 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.0, < 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.0, < 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.0, < 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.0, < 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.0, < 2.0.0"
}
}
}
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 = "7.5.0"
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.9"
vsi_per_subnet = 1
image_id = local.packer_image_id
machine_type = local.packer_machine_type
Expand Down