This repository was archived by the owner on Mar 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
tests/resources/existing-resources/instances Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ This solution supports provisioning and configuring the following infrastructure
25
25
26
26
| Name | Source | Version |
27
27
| ------| --------| ---------|
28
- | <a name =" module_buckets " ></a > [ buckets] ( #module\_ buckets ) | terraform-ibm-modules/cos/ibm//modules/buckets | 8.19.5 |
29
- | <a name =" module_cos " ></a > [ cos] ( #module\_ cos ) | terraform-ibm-modules/cos/ibm//modules/fscloud | 8.19.5 |
28
+ | <a name =" module_buckets " ></a > [ buckets] ( #module\_ buckets ) | terraform-ibm-modules/cos/ibm//modules/buckets | 8.19.7 |
29
+ | <a name =" module_cos " ></a > [ cos] ( #module\_ cos ) | terraform-ibm-modules/cos/ibm//modules/fscloud | 8.19.7 |
30
30
| <a name =" module_create_profile_attachment " ></a > [ create\_ profile\_ attachment] ( #module\_ create\_ profile\_ attachment ) | terraform-ibm-modules/scc/ibm//modules/attachment | 1.11.2 |
31
31
| <a name =" module_existing_cos_crn_parser " ></a > [ existing\_ cos\_ crn\_ parser] ( #module\_ existing\_ cos\_ crn\_ parser ) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
32
32
| <a name =" module_existing_en_crn_parser " ></a > [ existing\_ en\_ crn\_ parser] ( #module\_ existing\_ en\_ crn\_ parser ) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
33
33
| <a name =" module_existing_kms_crn_parser " ></a > [ existing\_ kms\_ crn\_ parser] ( #module\_ existing\_ kms\_ crn\_ parser ) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
34
34
| <a name =" module_existing_kms_key_crn_parser " ></a > [ existing\_ kms\_ key\_ crn\_ parser] ( #module\_ existing\_ kms\_ key\_ crn\_ parser ) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
35
35
| <a name =" module_existing_scc_crn_parser " ></a > [ existing\_ scc\_ crn\_ parser] ( #module\_ existing\_ scc\_ crn\_ parser ) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
36
- | <a name =" module_kms " ></a > [ kms] ( #module\_ kms ) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.20.0 |
36
+ | <a name =" module_kms " ></a > [ kms] ( #module\_ kms ) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.21.1 |
37
37
| <a name =" module_resource_group " ></a > [ resource\_ group] ( #module\_ resource\_ group ) | terraform-ibm-modules/resource-group/ibm | 1.1.6 |
38
38
| <a name =" module_scc " ></a > [ scc] ( #module\_ scc ) | terraform-ibm-modules/scc/ibm | 1.11.2 |
39
39
| <a name =" module_scc_wp " ></a > [ scc\_ wp] ( #module\_ scc\_ wp ) | terraform-ibm-modules/scc-workload-protection/ibm | 1.4.3 |
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ module "kms" {
126
126
}
127
127
count = local. use_kms_module ? 1 : 0 # no need to create any KMS resources if passing an existing key or bucket, or SCC instance
128
128
source = " terraform-ibm-modules/kms-all-inclusive/ibm"
129
- version = " 4.20.0 "
129
+ version = " 4.21.1 "
130
130
create_key_protect_instance = false
131
131
region = local. kms_region
132
132
existing_kms_instance_crn = var. existing_kms_instance_crn
@@ -196,7 +196,7 @@ module "cos" {
196
196
}
197
197
count = var. existing_scc_cos_bucket_name == null && var. existing_scc_instance_crn == null ? 1 : 0 # no need to call COS module if consumer is passing existing SCC instance or COS bucket
198
198
source = " terraform-ibm-modules/cos/ibm//modules/fscloud"
199
- version = " 8.19.5 "
199
+ version = " 8.19.7 "
200
200
resource_group_id = module. resource_group . resource_group_id
201
201
create_cos_instance = var. existing_cos_instance_crn == null ? true : false # don't create instance if existing one passed in
202
202
cos_instance_name = local. cos_instance_name
@@ -215,7 +215,7 @@ module "buckets" {
215
215
count = local. create_cross_account_auth_policy ? 1 : 0
216
216
depends_on = [time_sleep . wait_for_authorization_policy [0 ]]
217
217
source = " terraform-ibm-modules/cos/ibm//modules/buckets"
218
- version = " 8.19.5 "
218
+ version = " 8.19.7 "
219
219
bucket_configs = local. bucket_config
220
220
}
221
221
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ module "resource_group" {
16
16
17
17
module "cos" {
18
18
source = " terraform-ibm-modules/cos/ibm"
19
- version = " 8.19.5 "
19
+ version = " 8.19.7 "
20
20
resource_group_id = module. resource_group . resource_group_id
21
21
region = var. region
22
22
cos_instance_name = " ${ var . prefix } -cos"
@@ -46,7 +46,7 @@ module "cloud_monitoring" {
46
46
47
47
module "event_notifications" {
48
48
source = " terraform-ibm-modules/event-notifications/ibm"
49
- version = " 1.18.8 "
49
+ version = " 1.18.10 "
50
50
resource_group_id = module. resource_group . resource_group_id
51
51
name = " ${ var . prefix } -en"
52
52
tags = var. resource_tags
You can’t perform that action at this time.
0 commit comments