Skip to content

Commit 2258093

Browse files
fix(deps): update dependencies
1 parent 0b98c25 commit 2258093

File tree

9 files changed

+30
-30
lines changed

9 files changed

+30
-30
lines changed

examples/advanced/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ module "cbr_zone" {
6060
# Create new App Config instance
6161
module "app_config" {
6262
source = "terraform-ibm-modules/app-configuration/ibm"
63-
version = "1.9.1"
63+
version = "1.10.0"
6464
region = var.region
6565
resource_group_id = module.resource_group.resource_group_id
6666
app_config_plan = "basic"

examples/enterprise/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "resource_group" {
1515

1616
module "app_config" {
1717
source = "terraform-ibm-modules/app-configuration/ibm"
18-
version = "1.9.1"
18+
version = "1.10.0"
1919
region = var.region
2020
resource_group_id = module.resource_group.resource_group_id
2121
app_config_plan = "basic"

ibm_catalog.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@
338338
"grouping": "deployment",
339339
"original_grouping": "deployment",
340340
"config_constraints": {
341-
"type": "string"
341+
"type": "string"
342342
}
343-
},
343+
},
344344
"virtual": true
345345
},
346346
{
@@ -371,13 +371,13 @@
371371
"description": "A list of enterprise account group IDs to assign the trusted profile template to in order for the accounts to be scanned. Supports passing the string 'all' in the list to assign to all account groups. Only applies if `cspm_enabled` is true and a value is being passed for `enterprise_id`.",
372372
"required": false,
373373
"custom_config": {
374-
"type": "array",
375-
"grouping": "deployment",
376-
"original_grouping": "deployment",
377-
"config_constraints": {
378-
"type": "string"
379-
}
380-
},
374+
"type": "array",
375+
"grouping": "deployment",
376+
"original_grouping": "deployment",
377+
"config_constraints": {
378+
"type": "string"
379+
}
380+
},
381381
"virtual": true
382382
},
383383
{
@@ -387,13 +387,13 @@
387387
"description": "A list of enterprise account IDs to assign the trusted profile template to in order for the accounts to be scanned. Supports passing the string 'all' in the list to assign to all accounts. Only applies if `cspm_enabled` is true and a value is being passed for `enterprise_id`.",
388388
"required": false,
389389
"custom_config": {
390-
"type": "array",
391-
"grouping": "deployment",
392-
"original_grouping": "deployment",
393-
"config_constraints": {
394-
"type": "string"
395-
}
396-
},
390+
"type": "array",
391+
"grouping": "deployment",
392+
"original_grouping": "deployment",
393+
"config_constraints": {
394+
"type": "string"
395+
}
396+
},
397397
"virtual": true
398398
},
399399
{
@@ -466,7 +466,7 @@
466466
"crn:v1:bluemix:public:iam::::serviceRole:Manager",
467467
"crn:v1:bluemix:public:iam::::role:Editor"
468468
],
469-
"notes":"Required for creating and managing SCC Workload Protection instance."
469+
"notes": "Required for creating and managing SCC Workload Protection instance."
470470
},
471471
{
472472
"role_crns": [

solutions/fully-configurable/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ There is currently a [known issue](https://github.com/terraform-ibm-modules/terr
1919
| Name | Version |
2020
|------|---------|
2121
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.9.0 |
22-
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | 1.81.1 |
22+
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | 1.82.0 |
2323
| <a name="requirement_restapi"></a> [restapi](#requirement\_restapi) | 2.0.1 |
2424

2525
### Modules
@@ -33,7 +33,7 @@ There is currently a [known issue](https://github.com/terraform-ibm-modules/terr
3333

3434
| Name | Type |
3535
|------|------|
36-
| [ibm_iam_auth_token.auth_token](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.81.1/docs/data-sources/iam_auth_token) | data source |
36+
| [ibm_iam_auth_token.auth_token](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.82.0/docs/data-sources/iam_auth_token) | data source |
3737

3838
### Inputs
3939

solutions/fully-configurable/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = "1.81.1"
7+
version = "1.82.0"
88
}
99
restapi = {
1010
source = "Mastercard/restapi"

tests/existing-resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "resource_group" {
1717
# Create new App Config instance
1818
module "app_config" {
1919
source = "terraform-ibm-modules/app-configuration/ibm"
20-
version = "1.9.1"
20+
version = "1.10.0"
2121
region = var.region
2222
resource_group_id = module.resource_group.resource_group_id
2323
app_config_name = "${var.prefix}-app-config"

tests/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ toolchain go1.25.0
66

77
require (
88
github.com/gruntwork-io/terratest v0.50.0
9-
github.com/stretchr/testify v1.10.0
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.59.3
9+
github.com/stretchr/testify v1.11.1
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.0
1111
)
1212

1313
require (

tests/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,10 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
293293
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
294294
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
295295
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
296-
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
297-
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
298-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.59.3 h1:Z5lZaaka8ilzOws9BrtJgmU4Kdt+ntVKWHnebMJUhvU=
299-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.59.3/go.mod h1:kdhZ+FeS71D+tB0E2Sh1ISD3zQ+RThPX5SyFqduo7G8=
296+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
297+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
298+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.0 h1:bGNtXPKstiUJAQZXmXhKzVrK4UkR1S5btcfT1QA/QRg=
299+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.0/go.mod h1:kdhZ+FeS71D+tB0E2Sh1ISD3zQ+RThPX5SyFqduo7G8=
300300
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
301301
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
302302
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=

0 commit comments

Comments
 (0)