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

Commit a700d58

Browse files
chore(deps): update ci dependencies (#47)
Co-authored-by: Renovate Bot <[email protected]>
1 parent 3ec4dba commit a700d58

File tree

4 files changed

+42
-41
lines changed

4 files changed

+42
-41
lines changed

profiles/fscloud/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ The default values in this profile were scanned by [IBM Code Risk Analyzer (CRA)
1111
The IBM Cloud Framework for Financial Services mandates the application of an inbound network-based allowlist in front of the IBM Cloud Databases for (ICD) Enterprise DB instance. You can comply with this requirement by using the `cbr_rules` variable in the module, which can be used to create a narrow context-based restriction rule that is scoped to the Enterprise DB instance. CRA does not currently support checking for context-based restrictions, so you can ignore the failing rule after you set the context-based restriction.
1212

1313
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
14-
## Requirements
14+
### Requirements
1515

1616
| Name | Version |
1717
|------|---------|
1818
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
1919
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.54.0 |
2020

21-
## Modules
21+
### Modules
2222

2323
| Name | Source | Version |
2424
|------|--------|---------|
2525
| <a name="module_enterprise_db"></a> [enterprise\_db](#module\_enterprise\_db) | ../../ | n/a |
2626

27-
## Resources
27+
### Resources
2828

2929
No resources.
3030

31-
## Inputs
31+
### Inputs
3232

3333
| Name | Description | Type | Default | Required |
3434
|------|-------------|------|---------|:--------:|
@@ -52,7 +52,7 @@ No resources.
5252
| <a name="input_skip_iam_authorization_policy"></a> [skip\_iam\_authorization\_policy](#input\_skip\_iam\_authorization\_policy) | Set to true to skip the creation of an IAM authorization policy that permits all Enterprise database instances in the resource group to read the encryption key from the Hyper Protect Crypto Services instance. The HPCS instance is passed in through the var.existing\_kms\_instance\_guid variable. | `bool` | `false` | no |
5353
| <a name="input_users"></a> [users](#input\_users) | A list of users that you want to create on the database. Multiple blocks are allowed. The user password must be in the range of 10-32 characters. Be warned that in most case using IAM service credentials (via the var.service\_credential\_names) is sufficient to control access to the Enterprise Db instance. This blocks creates native enterprise database users, more info on that can be found here https://cloud.ibm.com/docs/databases-for-enterprisedb?topic=databases-for-enterprisedb-user-management&interface=api | <pre>list(object({<br> name = string<br> password = string # pragma: allowlist secret<br> type = string # "type" is required to generate the connection string for the outputs.<br> role = optional(string)<br> }))</pre> | `[]` | no |
5454

55-
## Outputs
55+
### Outputs
5656

5757
| Name | Description |
5858
|------|-------------|

tests/go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.20
44

55
require (
66
github.com/stretchr/testify v1.8.4
7-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.10.12
7+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.10.15
88
)
99

1010
require (
@@ -13,13 +13,14 @@ require (
1313
cloud.google.com/go/compute/metadata v0.2.3 // indirect
1414
cloud.google.com/go/iam v1.1.0 // indirect
1515
cloud.google.com/go/storage v1.30.1 // indirect
16+
dario.cat/mergo v1.0.0 // indirect
1617
github.com/IBM-Cloud/bluemix-go v0.0.0-20230616121711-b838ccdcd2fb // indirect
1718
github.com/IBM-Cloud/power-go-client v1.2.4 // indirect
1819
github.com/IBM/go-sdk-core/v5 v5.13.4 // indirect
19-
github.com/IBM/platform-services-go-sdk v0.41.0 // indirect
20+
github.com/IBM/platform-services-go-sdk v0.42.0 // indirect
2021
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
2122
github.com/Microsoft/go-winio v0.6.1 // indirect
22-
github.com/ProtonMail/go-crypto v0.0.0-20230528122434-6f98819771a1 // indirect
23+
github.com/ProtonMail/go-crypto v0.0.0-20230717121422-5aa5874ade95 // indirect
2324
github.com/acomagu/bufpipe v1.0.4 // indirect
2425
github.com/agext/levenshtein v1.2.3 // indirect
2526
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
@@ -32,7 +33,7 @@ require (
3233
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
3334
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3435
github.com/go-git/go-billy/v5 v5.4.1 // indirect
35-
github.com/go-git/go-git/v5 v5.7.0 // indirect
36+
github.com/go-git/go-git/v5 v5.8.1 // indirect
3637
github.com/go-logr/logr v1.2.4 // indirect
3738
github.com/go-logr/stdr v1.2.2 // indirect
3839
github.com/go-openapi/analysis v0.21.4 // indirect
@@ -55,7 +56,7 @@ require (
5556
github.com/google/uuid v1.3.0 // indirect
5657
github.com/googleapis/enterprise-certificate-proxy v0.2.4 // indirect
5758
github.com/googleapis/gax-go/v2 v2.10.0 // indirect
58-
github.com/gruntwork-io/terratest v0.43.8 // indirect
59+
github.com/gruntwork-io/terratest v0.43.11 // indirect
5960
github.com/hashicorp/errwrap v1.1.0 // indirect
6061
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6162
github.com/hashicorp/go-getter v1.7.1 // indirect
@@ -65,7 +66,6 @@ require (
6566
github.com/hashicorp/go-version v1.6.0 // indirect
6667
github.com/hashicorp/hcl/v2 v2.17.0 // indirect
6768
github.com/hashicorp/terraform-json v0.17.0 // indirect
68-
github.com/imdario/mergo v0.3.16 // indirect
6969
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
7070
github.com/jinzhu/copier v0.3.5 // indirect
7171
github.com/jmespath/go-jmespath v0.4.0 // indirect
@@ -84,7 +84,7 @@ require (
8484
github.com/pjbgf/sha1cd v0.3.0 // indirect
8585
github.com/pmezard/go-difflib v1.0.0 // indirect
8686
github.com/sergi/go-diff v1.3.1 // indirect
87-
github.com/skeema/knownhosts v1.1.1 // indirect
87+
github.com/skeema/knownhosts v1.2.0 // indirect
8888
github.com/tmccombs/hcl2json v0.5.0 // indirect
8989
github.com/ulikunitz/xz v0.5.11 // indirect
9090
github.com/xanzy/ssh-agent v0.3.3 // indirect
@@ -94,12 +94,12 @@ require (
9494
go.opentelemetry.io/otel v1.16.0 // indirect
9595
go.opentelemetry.io/otel/metric v1.16.0 // indirect
9696
go.opentelemetry.io/otel/trace v1.16.0 // indirect
97-
golang.org/x/crypto v0.11.0 // indirect
97+
golang.org/x/crypto v0.12.0 // indirect
9898
golang.org/x/mod v0.10.0 // indirect
99-
golang.org/x/net v0.10.0 // indirect
99+
golang.org/x/net v0.12.0 // indirect
100100
golang.org/x/oauth2 v0.8.0 // indirect
101-
golang.org/x/sys v0.10.0 // indirect
102-
golang.org/x/text v0.11.0 // indirect
101+
golang.org/x/sys v0.11.0 // indirect
102+
golang.org/x/text v0.12.0 // indirect
103103
golang.org/x/tools v0.9.3 // indirect
104104
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
105105
google.golang.org/api v0.127.0 // indirect

0 commit comments

Comments
 (0)