diff --git a/common-dev-assets b/common-dev-assets index 8128053..8b541c4 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit 8128053bfc9c208a0f3d2ecef90f5881d8ffee6f +Subproject commit 8b541c4666a3dbbdeaffde75db17c4c2fc8ff4c9 diff --git a/solutions/tf-extension-da/README.md b/solutions/tf-extension-da/README.md index 031fcec..008bbc8 100644 --- a/solutions/tf-extension-da/README.md +++ b/solutions/tf-extension-da/README.md @@ -40,7 +40,7 @@ This solution configures the following infrastructure to host a static website: | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.9.0 | -| [ibm](#requirement\_ibm) | 2.3.0 | +| [ibm](#requirement\_ibm) | 2.4.0 | ### Modules @@ -50,9 +50,9 @@ No modules. | Name | Type | |------|------| -| [ibm_cos_bucket_website_configuration.website](https://registry.terraform.io/providers/ibm-cloud/ibm/2.3.0/docs/resources/cos_bucket_website_configuration) | resource | -| [ibm_iam_access_group_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/2.3.0/docs/resources/iam_access_group_policy) | resource | -| [ibm_iam_access_group.public_access_group](https://registry.terraform.io/providers/ibm-cloud/ibm/2.3.0/docs/data-sources/iam_access_group) | data source | +| [ibm_cos_bucket_website_configuration.website](https://registry.terraform.io/providers/ibm-cloud/ibm/2.4.0/docs/resources/cos_bucket_website_configuration) | resource | +| [ibm_iam_access_group_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/2.4.0/docs/resources/iam_access_group_policy) | resource | +| [ibm_iam_access_group.public_access_group](https://registry.terraform.io/providers/ibm-cloud/ibm/2.4.0/docs/data-sources/iam_access_group) | data source | ### Inputs diff --git a/solutions/tf-extension-da/version.tf b/solutions/tf-extension-da/version.tf index 3d55c8f..d8f64cf 100644 --- a/solutions/tf-extension-da/version.tf +++ b/solutions/tf-extension-da/version.tf @@ -4,7 +4,7 @@ terraform { # Lock deployable architecture into an exact provider version - renovate automation will keep it updated ibm = { source = "ibm-cloud/ibm" - version = "2.3.0" + version = "2.4.0" } } } diff --git a/solutions/tf-fullstack-da/README.md b/solutions/tf-fullstack-da/README.md index a19a1a8..989bdaa 100644 --- a/solutions/tf-fullstack-da/README.md +++ b/solutions/tf-fullstack-da/README.md @@ -28,22 +28,22 @@ This solution provisions the following resources: | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.9.0 | -| [ibm](#requirement\_ibm) | 2.3.0 | +| [ibm](#requirement\_ibm) | 2.4.0 | ### Modules | Name | Source | Version | |------|--------|---------| -| [cos\_buckets](#module\_cos\_buckets) | terraform-ibm-modules/cos/ibm//modules/buckets | 10.16.7 | -| [cos\_instance](#module\_cos\_instance) | terraform-ibm-modules/cos/ibm | 10.16.7 | +| [cos\_buckets](#module\_cos\_buckets) | terraform-ibm-modules/cos/ibm//modules/buckets | 10.17.0 | +| [cos\_instance](#module\_cos\_instance) | terraform-ibm-modules/cos/ibm | 10.17.0 | | [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.6.1 | ### Resources | Name | Type | |------|------| -| [ibm_cos_bucket_replication_rule.cos_replication_rule](https://registry.terraform.io/providers/ibm-cloud/ibm/2.3.0/docs/resources/cos_bucket_replication_rule) | resource | -| [ibm_iam_authorization_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/2.3.0/docs/resources/iam_authorization_policy) | resource | +| [ibm_cos_bucket_replication_rule.cos_replication_rule](https://registry.terraform.io/providers/ibm-cloud/ibm/2.4.0/docs/resources/cos_bucket_replication_rule) | resource | +| [ibm_iam_authorization_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/2.4.0/docs/resources/iam_authorization_policy) | resource | ### Inputs diff --git a/solutions/tf-fullstack-da/main.tf b/solutions/tf-fullstack-da/main.tf index dc88147..87539e8 100644 --- a/solutions/tf-fullstack-da/main.tf +++ b/solutions/tf-fullstack-da/main.tf @@ -16,7 +16,7 @@ module "resource_group" { # create global COS instance module "cos_instance" { source = "terraform-ibm-modules/cos/ibm" - version = "10.16.7" + version = "10.17.0" resource_group_id = module.resource_group.resource_group_id cos_instance_name = var.prefix != null ? "${var.prefix}-${var.cos_instance_name}" : var.cos_instance_name create_cos_bucket = false @@ -30,7 +30,7 @@ locals { module "cos_buckets" { source = "terraform-ibm-modules/cos/ibm//modules/buckets" - version = "10.16.7" + version = "10.17.0" bucket_configs = [ { bucket_name = local.cos_source_bucket_name diff --git a/solutions/tf-fullstack-da/version.tf b/solutions/tf-fullstack-da/version.tf index 3d55c8f..d8f64cf 100644 --- a/solutions/tf-fullstack-da/version.tf +++ b/solutions/tf-fullstack-da/version.tf @@ -4,7 +4,7 @@ terraform { # Lock deployable architecture into an exact provider version - renovate automation will keep it updated ibm = { source = "ibm-cloud/ibm" - version = "2.3.0" + version = "2.4.0" } } }