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

Commit 5b0aade

Browse files
authored
feat: The COS KMS auth policy created by the DA is now scoped to the exact KMS key. NOTE: When upgrading from an old version, the auth policy will be re-created, however it will be non disruptive as it will create the new policy before removing the old one (#219)
1 parent 7643ae5 commit 5b0aade

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2023-12-12T06:39:44Z",
6+
"generated_at": "2023-12-13T06:39:44Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

solutions/instances/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This solution supports provisioning and configuring the following infrastructure
2525

2626
| Name | Source | Version |
2727
|------|--------|---------|
28-
| <a name="module_cos"></a> [cos](#module\_cos) | terraform-ibm-modules/cos/ibm//modules/fscloud | 8.11.14 |
28+
| <a name="module_cos"></a> [cos](#module\_cos) | terraform-ibm-modules/cos/ibm//modules/fscloud | 8.14.1 |
2929
| <a name="module_create_profile_attachment"></a> [create\_profile\_attachment](#module\_create\_profile\_attachment) | terraform-ibm-modules/scc/ibm//modules/attachment | 1.8.10 |
3030
| <a name="module_kms"></a> [kms](#module\_kms) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.15.13 |
3131
| <a name="module_resource_group"></a> [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.1.6 |

solutions/instances/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ module "cos" {
8888
}
8989
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
9090
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
91-
version = "8.11.14"
91+
version = "8.14.1"
9292
resource_group_id = module.resource_group.resource_group_id
9393
create_cos_instance = var.existing_cos_instance_crn == null ? true : false # don't create instance if existing one passed in
9494
cos_instance_name = local.cos_instance_name

0 commit comments

Comments
 (0)