diff --git a/solutions/tf-extension-da/README.md b/solutions/tf-extension-da/README.md
index 874c9ed..5022ef9 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.3.0 |
-| [ibm](#requirement\_ibm) | 1.78.3 |
+| [ibm](#requirement\_ibm) | 1.79.2 |
### Modules
@@ -50,9 +50,9 @@ No modules.
| Name | Type |
|------|------|
-| [ibm_cos_bucket_website_configuration.website](https://registry.terraform.io/providers/ibm-cloud/ibm/1.78.3/docs/resources/cos_bucket_website_configuration) | resource |
-| [ibm_iam_access_group_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/1.78.3/docs/resources/iam_access_group_policy) | resource |
-| [ibm_iam_access_group.public_access_group](https://registry.terraform.io/providers/ibm-cloud/ibm/1.78.3/docs/data-sources/iam_access_group) | data source |
+| [ibm_cos_bucket_website_configuration.website](https://registry.terraform.io/providers/ibm-cloud/ibm/1.79.2/docs/resources/cos_bucket_website_configuration) | resource |
+| [ibm_iam_access_group_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/1.79.2/docs/resources/iam_access_group_policy) | resource |
+| [ibm_iam_access_group.public_access_group](https://registry.terraform.io/providers/ibm-cloud/ibm/1.79.2/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 9433a37..a0f72ed 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 = "1.78.3"
+ version = "1.79.2"
}
}
}
diff --git a/solutions/tf-fullstack-da/README.md b/solutions/tf-fullstack-da/README.md
index 734a8dd..aa74b41 100644
--- a/solutions/tf-fullstack-da/README.md
+++ b/solutions/tf-fullstack-da/README.md
@@ -28,23 +28,23 @@ This solution provisions the following resources:
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.3.0 |
-| [ibm](#requirement\_ibm) | 1.78.3 |
+| [ibm](#requirement\_ibm) | 1.79.2 |
### Modules
| Name | Source | Version |
|------|--------|---------|
-| [cos\_buckets](#module\_cos\_buckets) | terraform-ibm-modules/cos/ibm//modules/buckets | 9.0.4 |
-| [cos\_instance](#module\_cos\_instance) | terraform-ibm-modules/cos/ibm | 9.0.4 |
-| [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.2.0 |
+| [cos\_buckets](#module\_cos\_buckets) | terraform-ibm-modules/cos/ibm//modules/buckets | 9.0.6 |
+| [cos\_instance](#module\_cos\_instance) | terraform-ibm-modules/cos/ibm | 9.0.6 |
+| [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.2.1 |
### Resources
| Name | Type |
|------|------|
-| [ibm_cos_bucket_replication_rule.cos_replication_rule](https://registry.terraform.io/providers/ibm-cloud/ibm/1.78.3/docs/resources/cos_bucket_replication_rule) | resource |
-| [ibm_iam_authorization_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/1.78.3/docs/resources/iam_authorization_policy) | resource |
-| [ibm_iam_account_settings.iam_account_settings](https://registry.terraform.io/providers/ibm-cloud/ibm/1.78.3/docs/data-sources/iam_account_settings) | data source |
+| [ibm_cos_bucket_replication_rule.cos_replication_rule](https://registry.terraform.io/providers/ibm-cloud/ibm/1.79.2/docs/resources/cos_bucket_replication_rule) | resource |
+| [ibm_iam_authorization_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/1.79.2/docs/resources/iam_authorization_policy) | resource |
+| [ibm_iam_account_settings.iam_account_settings](https://registry.terraform.io/providers/ibm-cloud/ibm/1.79.2/docs/data-sources/iam_account_settings) | data source |
### Inputs
diff --git a/solutions/tf-fullstack-da/main.tf b/solutions/tf-fullstack-da/main.tf
index 41be649..3970c11 100644
--- a/solutions/tf-fullstack-da/main.tf
+++ b/solutions/tf-fullstack-da/main.tf
@@ -8,7 +8,7 @@
# optionally create the resource group, or lookup existing one
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
resource_group_name = var.use_existing_resource_group == false ? (var.prefix != null ? "${var.prefix}-${var.resource_group_name}" : var.resource_group_name) : null
existing_resource_group_name = var.use_existing_resource_group == true ? var.resource_group_name : null
}
@@ -16,7 +16,7 @@ module "resource_group" {
# create global COS instance
module "cos_instance" {
source = "terraform-ibm-modules/cos/ibm"
- version = "9.0.4"
+ version = "9.0.6"
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 = "9.0.4"
+ version = "9.0.6"
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 9433a37..a0f72ed 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 = "1.78.3"
+ version = "1.79.2"
}
}
}