Skip to content

Commit 653ac0c

Browse files
authored
fix(deps): update terraform-module (#477)
1 parent 6c7b454 commit 653ac0c

File tree

15 files changed

+22
-22
lines changed

15 files changed

+22
-22
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Optionally, you need the following permissions to attach Access Management tags
195195
| Name | Version |
196196
|------|---------|
197197
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
198-
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.66.0, < 2.0.0 |
198+
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.67.0, < 2.0.0 |
199199
| <a name="requirement_kubernetes"></a> [kubernetes](#requirement\_kubernetes) | >= 2.16.1, < 3.0.0 |
200200
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.2.1, < 4.0.0 |
201201
@@ -207,7 +207,7 @@ Optionally, you need the following permissions to attach Access Management tags
207207
| <a name="module_attach_sg_to_lb"></a> [attach\_sg\_to\_lb](#module\_attach\_sg\_to\_lb) | terraform-ibm-modules/security-group/ibm | 2.6.2 |
208208
| <a name="module_attach_sg_to_master_vpe"></a> [attach\_sg\_to\_master\_vpe](#module\_attach\_sg\_to\_master\_vpe) | terraform-ibm-modules/security-group/ibm | 2.6.2 |
209209
| <a name="module_attach_sg_to_registry_vpe"></a> [attach\_sg\_to\_registry\_vpe](#module\_attach\_sg\_to\_registry\_vpe) | terraform-ibm-modules/security-group/ibm | 2.6.2 |
210-
| <a name="module_cos_instance"></a> [cos\_instance](#module\_cos\_instance) | terraform-ibm-modules/cos/ibm | 8.5.3 |
210+
| <a name="module_cos_instance"></a> [cos\_instance](#module\_cos\_instance) | terraform-ibm-modules/cos/ibm | 8.9.1 |
211211
212212
### Resources
213213

examples/add_rules_to_sg/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
ibm = {
88
source = "IBM-Cloud/ibm"
9-
version = "1.66.0"
9+
version = "1.67.0"
1010
}
1111
}
1212
}

examples/advanced/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ locals {
2222

2323
module "kp_all_inclusive" {
2424
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
25-
version = "4.13.4"
25+
version = "4.15.2"
2626
key_protect_instance_name = "${var.prefix}-kp-instance"
2727
resource_group_id = module.resource_group.resource_group_id
2828
region = var.region

examples/advanced/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
ibm = {
88
source = "IBM-Cloud/ibm"
9-
version = ">= 1.66.0"
9+
version = ">= 1.67.0"
1010
}
1111
kubernetes = {
1212
source = "hashicorp/kubernetes"

examples/basic/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
ibm = {
88
source = "IBM-Cloud/ibm"
9-
version = "1.66.0"
9+
version = "1.67.0"
1010
}
1111
}
1212
}

examples/cross_kms_support/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
ibm = {
88
source = "IBM-Cloud/ibm"
9-
version = ">= 1.66.0"
9+
version = ">= 1.67.0"
1010
}
1111
}
1212
}

examples/custom_sg/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
ibm = {
88
source = "IBM-Cloud/ibm"
9-
version = ">= 1.66.0"
9+
version = ">= 1.67.0"
1010
}
1111
}
1212
}

examples/fscloud/main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ module "resource_group" {
1616

1717
module "cos_fscloud" {
1818
source = "terraform-ibm-modules/cos/ibm"
19-
version = "8.5.3"
19+
version = "8.9.1"
2020
resource_group_id = module.resource_group.resource_group_id
2121
create_cos_bucket = false
2222
cos_instance_name = "${var.prefix}-cos"
2323
skip_iam_authorization_policy = true
24-
sysdig_crn = module.observability_instances.cloud_monitoring_crn
24+
monitoring_crn = module.observability_instances.cloud_monitoring_crn
2525
activity_tracker_crn = local.at_crn
2626
# Don't set CBR rules here as we don't want to create a circular dependency with the VPC module
2727
}
@@ -32,7 +32,7 @@ module "cos_fscloud" {
3232

3333
module "flowlogs_bucket" {
3434
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
35-
version = "8.5.3"
35+
version = "8.9.1"
3636

3737
bucket_configs = [
3838
{
@@ -54,7 +54,7 @@ module "flowlogs_bucket" {
5454
module "vpc" {
5555
depends_on = [module.flowlogs_bucket]
5656
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
57-
version = "7.18.3"
57+
version = "7.19.0"
5858
resource_group_id = module.resource_group.resource_group_id
5959
region = var.region
6060
prefix = var.prefix
@@ -144,7 +144,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
144144

145145
module "cbr_zone" {
146146
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
147-
version = "1.23.0"
147+
version = "1.23.1"
148148
name = "${var.prefix}-VPC-network-zone"
149149
zone_description = "CBR Network zone containing VPC"
150150
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -156,7 +156,7 @@ module "cbr_zone" {
156156

157157
module "cbr_rules" {
158158
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
159-
version = "1.23.0"
159+
version = "1.23.1"
160160
rule_description = "${var.prefix} rule for vpc flow log access to cos"
161161
enforcement_mode = "enabled"
162162
resources = [{

examples/fscloud/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
ibm = {
88
source = "ibm-cloud/ibm"
9-
version = ">= 1.66.0"
9+
version = ">= 1.67.0"
1010
}
1111
logdna = {
1212
source = "logdna/logdna"

examples/multiple_mzr_clusters/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ module "observability_instances" {
197197

198198
module "observability_agents_1" {
199199
source = "terraform-ibm-modules/observability-agents/ibm"
200-
version = "1.26.0"
200+
version = "1.28.3"
201201
providers = {
202202
helm = helm.helm_cluster_1
203203
}
@@ -211,7 +211,7 @@ module "observability_agents_1" {
211211

212212
module "observability_agents_2" {
213213
source = "terraform-ibm-modules/observability-agents/ibm"
214-
version = "1.26.0"
214+
version = "1.28.3"
215215
providers = {
216216
helm = helm.helm_cluster_2
217217
}

0 commit comments

Comments
 (0)