Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

Commit 78ad43d

Browse files
chore(deps): update terraform-module (#105)
1 parent c9d356e commit 78ad43d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

solutions/instances/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ This solution supports the following:
2222

2323
| Name | Source | Version |
2424
|------|--------|---------|
25-
| <a name="module_cos"></a> [cos](#module\_cos) | terraform-ibm-modules/cos/ibm//modules/fscloud | 8.3.0 |
26-
| <a name="module_create_profile_attachment"></a> [create\_profile\_attachment](#module\_create\_profile\_attachment) | terraform-ibm-modules/scc/ibm//modules/attachment | 1.5.0 |
27-
| <a name="module_kms"></a> [kms](#module\_kms) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.13.1 |
25+
| <a name="module_cos"></a> [cos](#module\_cos) | terraform-ibm-modules/cos/ibm//modules/fscloud | 8.3.2 |
26+
| <a name="module_create_profile_attachment"></a> [create\_profile\_attachment](#module\_create\_profile\_attachment) | terraform-ibm-modules/scc/ibm//modules/attachment | 1.6.0 |
27+
| <a name="module_kms"></a> [kms](#module\_kms) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.13.2 |
2828
| <a name="module_resource_group"></a> [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.1.5 |
29-
| <a name="module_scc"></a> [scc](#module\_scc) | terraform-ibm-modules/scc/ibm | 1.5.0 |
29+
| <a name="module_scc"></a> [scc](#module\_scc) | terraform-ibm-modules/scc/ibm | 1.6.0 |
3030
| <a name="module_scc_wp"></a> [scc\_wp](#module\_scc\_wp) | terraform-ibm-modules/scc-workload-protection/ibm | 1.3.0 |
3131

3232
### Resources

solutions/instances/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module "kms" {
4747
}
4848
count = var.existing_scc_cos_kms_key_crn != null || var.existing_scc_cos_bucket_name != null ? 0 : 1 # no need to create any KMS resources if passing an existing key, or bucket
4949
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
50-
version = "4.13.1"
50+
version = "4.13.2"
5151
create_key_protect_instance = false
5252
region = local.kms_region
5353
existing_kms_instance_guid = local.existing_kms_guid
@@ -99,7 +99,7 @@ module "cos" {
9999
}
100100
count = var.existing_scc_cos_bucket_name == null ? 1 : 0 # no need to call COS module if consumer is passing existing COS bucket
101101
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
102-
version = "8.3.0"
102+
version = "8.3.2"
103103
resource_group_id = module.resource_group.resource_group_id
104104
create_cos_instance = var.existing_cos_instance_crn == null ? true : false # don't create instance if existing one passed in
105105
cos_instance_name = local.cos_instance_name
@@ -132,7 +132,7 @@ module "cos" {
132132

133133
module "scc" {
134134
source = "terraform-ibm-modules/scc/ibm"
135-
version = "1.5.0"
135+
version = "1.6.0"
136136
resource_group_id = module.resource_group.resource_group_id
137137
region = var.scc_region
138138
instance_name = local.scc_instance_name
@@ -156,7 +156,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {}
156156

157157
module "create_profile_attachment" {
158158
source = "terraform-ibm-modules/scc/ibm//modules/attachment"
159-
version = "1.5.0"
159+
version = "1.6.0"
160160
for_each = {
161161
for idx, profile_attachment in var.profile_attachments :
162162
profile_attachment => idx

tests/resources/existing-resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "cos" {
1818
source = "terraform-ibm-modules/cos/ibm"
19-
version = "8.3.0"
19+
version = "8.3.2"
2020
resource_group_id = module.resource_group.resource_group_id
2121
region = var.region
2222
cos_instance_name = "${var.prefix}-cos"

0 commit comments

Comments
 (0)