File tree Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ This solution configures the following infrastructure to host a static website:
4040| Name | Version |
4141|------|---------|
4242| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.9.0 |
43- | <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | 1.80.4 |
43+ | <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | 1.81.0 |
4444
4545### Modules
4646
@@ -50,9 +50,9 @@ No modules.
5050
5151| Name | Type |
5252|------|------|
53- | [ibm_cos_bucket_website_configuration.website](https://registry.terraform.io/providers/ibm-cloud/ibm/1.80.4 /docs/resources/cos_bucket_website_configuration) | resource |
54- | [ibm_iam_access_group_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/1.80.4 /docs/resources/iam_access_group_policy) | resource |
55- | [ibm_iam_access_group.public_access_group](https://registry.terraform.io/providers/ibm-cloud/ibm/1.80.4 /docs/data-sources/iam_access_group) | data source |
53+ | [ibm_cos_bucket_website_configuration.website](https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.0 /docs/resources/cos_bucket_website_configuration) | resource |
54+ | [ibm_iam_access_group_policy.policy](https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.0 /docs/resources/iam_access_group_policy) | resource |
55+ | [ibm_iam_access_group.public_access_group](https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.0 /docs/data-sources/iam_access_group) | data source |
5656
5757### Inputs
5858
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 # Lock deployable architecture into an exact provider version - renovate automation will keep it updated
55 ibm = {
66 source = " ibm-cloud/ibm"
7- version = " 1.80.4 "
7+ version = " 1.81.0 "
88 }
99 }
1010}
Original file line number Diff line number Diff line change @@ -28,23 +28,23 @@ This solution provisions the following resources:
2828| Name | Version |
2929| ------| ---------|
3030| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.9.0 |
31- | <a name =" requirement_ibm " ></a > [ ibm] ( #requirement\_ ibm ) | 1.80.4 |
31+ | <a name =" requirement_ibm " ></a > [ ibm] ( #requirement\_ ibm ) | 1.81.0 |
3232
3333### Modules
3434
3535| Name | Source | Version |
3636| ------| --------| ---------|
37- | <a name =" module_cos_buckets " ></a > [ cos\_ buckets] ( #module\_ cos\_ buckets ) | terraform-ibm-modules/cos/ibm//modules/buckets | 10.1.15 |
38- | <a name =" module_cos_instance " ></a > [ cos\_ instance] ( #module\_ cos\_ instance ) | terraform-ibm-modules/cos/ibm | 10.1.15 |
39- | <a name =" module_resource_group " ></a > [ resource\_ group] ( #module\_ resource\_ group ) | terraform-ibm-modules/resource-group/ibm | 1.2.1 |
37+ | <a name =" module_cos_buckets " ></a > [ cos\_ buckets] ( #module\_ cos\_ buckets ) | terraform-ibm-modules/cos/ibm//modules/buckets | 10.1.16 |
38+ | <a name =" module_cos_instance " ></a > [ cos\_ instance] ( #module\_ cos\_ instance ) | terraform-ibm-modules/cos/ibm | 10.1.16 |
39+ | <a name =" module_resource_group " ></a > [ resource\_ group] ( #module\_ resource\_ group ) | terraform-ibm-modules/resource-group/ibm | 1.3.0 |
4040
4141### Resources
4242
4343| Name | Type |
4444| ------| ------|
45- | [ ibm_cos_bucket_replication_rule.cos_replication_rule] ( https://registry.terraform.io/providers/ibm-cloud/ibm/1.80.4 /docs/resources/cos_bucket_replication_rule ) | resource |
46- | [ ibm_iam_authorization_policy.policy] ( https://registry.terraform.io/providers/ibm-cloud/ibm/1.80.4 /docs/resources/iam_authorization_policy ) | resource |
47- | [ ibm_iam_account_settings.iam_account_settings] ( https://registry.terraform.io/providers/ibm-cloud/ibm/1.80.4 /docs/data-sources/iam_account_settings ) | data source |
45+ | [ ibm_cos_bucket_replication_rule.cos_replication_rule] ( https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.0 /docs/resources/cos_bucket_replication_rule ) | resource |
46+ | [ ibm_iam_authorization_policy.policy] ( https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.0 /docs/resources/iam_authorization_policy ) | resource |
47+ | [ ibm_iam_account_settings.iam_account_settings] ( https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.0 /docs/data-sources/iam_account_settings ) | data source |
4848
4949### Inputs
5050
Original file line number Diff line number Diff line change 88# optionally create the resource group, or lookup existing one
99module "resource_group" {
1010 source = " terraform-ibm-modules/resource-group/ibm"
11- version = " 1.2.1 "
11+ version = " 1.3.0 "
1212 resource_group_name = var. use_existing_resource_group == false ? (var. prefix != null ? " ${ var . prefix } -${ var . resource_group_name } " : var. resource_group_name ) : null
1313 existing_resource_group_name = var. use_existing_resource_group == true ? var. resource_group_name : null
1414}
1515
1616# create global COS instance
1717module "cos_instance" {
1818 source = " terraform-ibm-modules/cos/ibm"
19- version = " 10.1.15 "
19+ version = " 10.1.16 "
2020 resource_group_id = module. resource_group . resource_group_id
2121 cos_instance_name = var. prefix != null ? " ${ var . prefix } -${ var . cos_instance_name } " : var. cos_instance_name
2222 create_cos_bucket = false
@@ -30,7 +30,7 @@ locals {
3030
3131module "cos_buckets" {
3232 source = " terraform-ibm-modules/cos/ibm//modules/buckets"
33- version = " 10.1.15 "
33+ version = " 10.1.16 "
3434 bucket_configs = [
3535 {
3636 bucket_name = local.cos_source_bucket_name
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 # Lock deployable architecture into an exact provider version - renovate automation will keep it updated
55 ibm = {
66 source = " ibm-cloud/ibm"
7- version = " 1.80.4 "
7+ version = " 1.81.0 "
88 }
99 }
1010}
You can’t perform that action at this time.
0 commit comments