Skip to content

Commit a1ca10a

Browse files
fix(deps): update dependencies
1 parent d8b58b4 commit a1ca10a

File tree

8 files changed

+29
-29
lines changed

8 files changed

+29
-29
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
* [Submodules](./modules)
1414
* [fscloud](./modules/fscloud)
1515
* [Examples](./examples)
16-
* [Basic example with index creation and updates to cluster-wide settings](./examples/basic)
17-
* [Complete example with autoscaling, BYOK encryption and service credentials creation](./examples/complete)
18-
* [Financial Services Cloud profile example with autoscaling enabled](./examples/fscloud)
19-
* [Restore from backup example](./examples/backup-restore)
16+
* <div style="display: inline-block;"><a href="./examples/backup-restore">Restore from backup example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=ie-backup-restore-example&repository=github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch/tree/main/examples/backup-restore" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
17+
* <div style="display: inline-block;"><a href="./examples/basic">Basic example with index creation and updates to cluster-wide settings</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=ie-basic-example&repository=github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch/tree/main/examples/basic" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
18+
* <div style="display: inline-block;"><a href="./examples/complete">Complete example with autoscaling, BYOK encryption and service credentials creation</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=ie-complete-example&repository=github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch/tree/main/examples/complete" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
19+
* <div style="display: inline-block;"><a href="./examples/fscloud">Financial Services Cloud profile example with autoscaling enabled</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=ie-fscloud-example&repository=github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch/tree/main/examples/fscloud" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
2020
* [Contributing](#contributing)
2121
<!-- END OVERVIEW HOOK -->
2222

@@ -68,9 +68,9 @@ You need the following permissions to run this module.
6868

6969
| Name | Source | Version |
7070
|------|--------|---------|
71-
| <a name="module_backup_key_crn_parser"></a> [backup\_key\_crn\_parser](#module\_backup\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
72-
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.33.7 |
73-
| <a name="module_kms_key_crn_parser"></a> [kms\_key\_crn\_parser](#module\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
71+
| <a name="module_backup_key_crn_parser"></a> [backup\_key\_crn\_parser](#module\_backup\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.3.0 |
72+
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.33.8 |
73+
| <a name="module_kms_key_crn_parser"></a> [kms\_key\_crn\_parser](#module\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.3.0 |
7474

7575
### Resources
7676

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ locals {
3636

3737
module "key_protect_all_inclusive" {
3838
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
39-
version = "5.4.5"
39+
version = "5.4.8"
4040
resource_group_id = module.resource_group.resource_group_id
4141
# Only us-south, us-east and eu-de backup encryption keys are supported. See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok for details.
4242
# Note: Database instance and Key Protect must be created on the same region.
@@ -98,7 +98,7 @@ module "icd_elasticsearch" {
9898
module "secrets_manager" {
9999
count = var.existing_sm_instance_guid == null ? 1 : 0
100100
source = "terraform-ibm-modules/secrets-manager/ibm"
101-
version = "2.11.3"
101+
version = "2.11.7"
102102
resource_group_id = module.resource_group.resource_group_id
103103
region = var.region
104104
secrets_manager_name = "${var.prefix}-secrets-manager"

examples/fscloud/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
3939
##############################################################################
4040
module "cbr_zone" {
4141
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
42-
version = "1.33.7"
42+
version = "1.33.8"
4343
name = "${var.prefix}-VPC-network-zone"
4444
zone_description = "CBR Network zone containing VPC"
4545
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ locals {
2828
module "kms_key_crn_parser" {
2929
count = local.parse_kms_key ? 1 : 0
3030
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
31-
version = "1.2.0"
31+
version = "1.3.0"
3232
crn = var.kms_key_crn
3333
}
3434

3535
module "backup_key_crn_parser" {
3636
count = local.parse_backup_kms_key ? 1 : 0
3737
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
38-
version = "1.2.0"
38+
version = "1.3.0"
3939
crn = local.backup_encryption_key_crn
4040
}
4141

@@ -303,7 +303,7 @@ resource "ibm_resource_tag" "elasticsearch_tag" {
303303
module "cbr_rule" {
304304
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
305305
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
306-
version = "1.33.7"
306+
version = "1.33.8"
307307
rule_description = var.cbr_rules[count.index].description
308308
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
309309
rule_contexts = var.cbr_rules[count.index].rule_contexts

solutions/fully-configurable/main.tf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module "kms" {
3232
}
3333
count = local.create_new_kms_key ? 1 : 0
3434
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
35-
version = "5.4.5"
35+
version = "5.4.8"
3636
create_key_protect_instance = false
3737
region = local.kms_region
3838
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -62,21 +62,21 @@ module "kms" {
6262
module "kms_instance_crn_parser" {
6363
count = var.existing_kms_instance_crn != null ? 1 : 0
6464
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
65-
version = "1.2.0"
65+
version = "1.3.0"
6666
crn = var.existing_kms_instance_crn
6767
}
6868

6969
module "kms_key_crn_parser" {
7070
count = var.existing_kms_key_crn != null ? 1 : 0
7171
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
72-
version = "1.2.0"
72+
version = "1.3.0"
7373
crn = var.existing_kms_key_crn
7474
}
7575

7676
module "kms_backup_key_crn_parser" {
7777
count = var.existing_backup_kms_key_crn != null ? 1 : 0
7878
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
79-
version = "1.2.0"
79+
version = "1.3.0"
8080
crn = var.existing_backup_kms_key_crn
8181
}
8282

@@ -239,7 +239,7 @@ locals {
239239
module "es_instance_crn_parser" {
240240
count = var.existing_elasticsearch_instance_crn != null ? 1 : 0
241241
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
242-
version = "1.2.0"
242+
version = "1.3.0"
243243
crn = var.existing_elasticsearch_instance_crn
244244
}
245245

@@ -347,7 +347,7 @@ locals {
347347
module "sm_instance_crn_parser" {
348348
count = var.existing_secrets_manager_instance_crn != null ? 1 : 0
349349
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
350-
version = "1.2.0"
350+
version = "1.3.0"
351351
crn = var.existing_secrets_manager_instance_crn
352352
}
353353

@@ -432,7 +432,7 @@ locals {
432432
module "secrets_manager_service_credentials" {
433433
count = length(local.service_credential_secrets) > 0 ? 1 : 0
434434
source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
435-
version = "2.11.3"
435+
version = "2.11.7"
436436
# converted into implicit dependency and removed explicit depends_on time_sleep.wait_for_elasticsearch_authorization_policy for this module because of issue https://github.com/terraform-ibm-modules/terraform-ibm-icd-redis/issues/608
437437
existing_sm_instance_guid = local.create_secrets_manager_auth_policy > 0 ? time_sleep.wait_for_elasticsearch_authorization_policy[0].triggers["secrets_manager_guid"] : local.existing_secrets_manager_instance_guid
438438
existing_sm_instance_region = local.create_secrets_manager_auth_policy > 0 ? time_sleep.wait_for_elasticsearch_authorization_policy[0].triggers["secrets_manager_region"] : local.existing_secrets_manager_instance_region
@@ -478,7 +478,7 @@ data "http" "es_metadata" {
478478
module "code_engine_kibana" {
479479
count = var.enable_kibana_dashboard ? 1 : 0
480480
source = "terraform-ibm-modules/code-engine/ibm"
481-
version = "4.6.9"
481+
version = "4.6.10"
482482
resource_group_id = module.resource_group.resource_group_id
483483
project_name = local.code_engine_project_name
484484
existing_project_id = local.code_engine_project_id

tests/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ module github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch
22

33
go 1.24.0
44

5-
toolchain go1.25.3
5+
toolchain go1.25.4
66

77
require (
88
github.com/google/uuid v1.6.0
9-
github.com/gruntwork-io/terratest v0.51.0
9+
github.com/gruntwork-io/terratest v0.52.0
1010
github.com/stretchr/testify v1.11.1
11-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17
11+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.19
1212
)
1313

1414
require (

tests/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX
130130
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
131131
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
132132
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
133-
github.com/gruntwork-io/terratest v0.51.0 h1:RCXlCwWlHqhUoxgF6n3hvywvbvrsTXqoqt34BrnLekw=
134-
github.com/gruntwork-io/terratest v0.51.0/go.mod h1:evZHXb8VWDgv5O5zEEwfkwMhkx9I53QR/RB11cISrpg=
133+
github.com/gruntwork-io/terratest v0.52.0 h1:7+I3FqEImowIajZ9Qyo5ngr7n2AUINJko6x+KzlWNjU=
134+
github.com/gruntwork-io/terratest v0.52.0/go.mod h1:y2Evi+Ac04QpzF3mbRPqrBjipDN7gjqlw6+OZoy2vX4=
135135
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
136136
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
137137
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -235,8 +235,8 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
235235
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
236236
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
237237
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
238-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17 h1:unGRxvM9OJBTsfDQg/AZCYOeJZ5TqrCsPphjWJ2wI94=
239-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17/go.mod h1:g0kmBhFk6pVoTmse42tMNCSNktiOYJHAda/pAzOIxco=
238+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.19 h1:6a84e97jf33CjHPz6doFNloP3XiAXE2YZ27x/Tq8AFk=
239+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.19/go.mod h1:g0kmBhFk6pVoTmse42tMNCSNktiOYJHAda/pAzOIxco=
240240
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
241241
github.com/tmccombs/hcl2json v0.6.7 h1:RYKTs4kd/gzRsEiv7J3M2WQ7TYRYZVc+0H0pZdERkxA=
242242
github.com/tmccombs/hcl2json v0.6.7/go.mod h1:lJgBOOGDpbhjvdG2dLaWsqB4KBzul2HytfDTS3H465o=

0 commit comments

Comments
 (0)