Skip to content

Conversation

terraform-ibm-modules-ops
Copy link
Contributor

@terraform-ibm-modules-ops terraform-ibm-modules-ops commented Aug 8, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
elasticstack (source) required_provider minor 0.11.15 -> 0.12.0 age confidence
github.com/gruntwork-io/terratest require minor v0.50.0 -> v0.51.0 age confidence
github.com/stretchr/testify require minor v1.10.0 -> v1.11.1 age confidence
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper require minor v1.58.5 -> v1.60.15 age confidence
github.com/terraform-ibm-modules/terraform-ibm-watsonx-saas-da module minor v1.9.1 -> v1.12.0 age confidence
go (source) toolchain minor 1.24.5 -> 1.25.3 age confidence
ibm (source) required_provider minor 1.78.2 -> 1.84.1 age confidence
kubernetes (source) required_provider minor 2.36.0 -> 2.38.0 age confidence
restapi (source) required_provider major 1.20.0 -> 2.0.1 age confidence
terraform-ibm-modules/base-ocp-vpc/ibm (source) module minor 3.35.10 -> 3.64.3 age confidence
terraform-ibm-modules/common-pipeline-assets action minor v1.22.5 -> v1.23.2 age confidence
terraform-ibm-modules/cos/ibm (source) module major 8.16.5 -> 10.5.0 age confidence
terraform-ibm-modules/resource-group/ibm (source) module minor 1.1.6 -> 1.4.0 age confidence
terraform-ibm-modules/secrets-manager-secret/ibm (source) module minor 1.4.0 -> 1.9.1 age confidence

Release Notes

elastic/terraform-provider-elasticstack (elasticstack)

v0.12.0

Compare Source

  • Fix provider crash with elasticstack_kibana_action_connector when config or secrets was unset in 0.11.17 (#​1355)
  • Added labels field to elasticstack_kibana_synthetics_monitor resource for associating key-value pairs with monitors (#​1360)
  • Fixes provider crash with elasticstack_kibana_slo when using kql_custom_indicator with no filter set. (#​1354)
  • Updates for Security Detection Rules (#​1361
    • Add support for threat property
    • Gracefully support query property not being set
    • Add esql specific validations to reject unsupported fields index and filters
    • Gracefully handle response action with no provided frequency
    • Add validation for required anomaly_threshold field in anomaly detection rules
    • Add support for timeline_id / timeline_title fields
    • Gracefully handle threat_query not being provided for threat_match ule

v0.11.18

Compare Source

Breaking changes

The ssl field on the elasticstack_fleet_output resource has been changes from a block to an attribute. This change ensures ongoing consistency within the resource schema for this resource, and aligns with Terraform best practices.

Existing elasticstack_fleet_output resources defining ssl will have to update the declaration to an attribute style. For example:

resource "elasticstack_fleet_output" "output" {
  ...
  ssl {
    ...
  }
}

becomes

resource "elasticstack_fleet_output" "output" {
  ...
  ssl = {  # Note the equals sign here. 
    ...
  }
}
Changes
  • Create elasticstack_kibana_security_detection_rule resource. (#​1290)
  • Add elasticstack_kibana_export_saved_objects data source (#​1293)
  • Create elasticstack_kibana_maintenance_window resource. (#​1224)
  • Add support for solution field in elasticstack_kibana_space resource and data source (#​1102)
  • Add slo_id validation to elasticstack_kibana_slo (#​1221)
  • Add ignore_missing_component_templates to elasticstack_elasticsearch_index_template (#​1206)
  • Migrate elasticstack_elasticsearch_enrich_policy resource and data source to Terraform Plugin Framework (#​1220)
  • Prevent provider panic when a script exists in state, but not in Elasticsearch (#​1218)
  • Add support for managing cross_cluster API keys in elasticstack_elasticsearch_security_api_key (#​1252)
  • Allow version changes without a destroy/create cycle with elasticstack_fleet_integration (#​1255). This fixes an issue where it was impossible to upgrade integrations which are used by an integration policy.
  • Add namespace attribute to elasticstack_kibana_synthetics_monitor resource to support setting data stream namespace independently from space_id (#​1247)
  • Support setting an explit connector_id in elasticstack_kibana_action_connector. This attribute already existed, but was being ignored by the provider. Setting the attribute will return an error in Elastic Stack v8.8 and lower since creating a connector with an explicit ID is not supported. (1260)
  • Migrate elasticstack_kibana_action_connector to the Terraform plugin framework (#​1269)
  • Migrate elasticstack_elasticsearch_security_role_mapping resource and data source to Terraform Plugin Framework (#​1279)
  • Add support for inactivity_timeout in elasticstack_fleet_agent_policy (#​641)
  • Migrate elasticstack_elasticsearch_script resource to Terraform Plugin Framework (#​1297)
  • Add support for kafka output types in elasticstack_fleet_output (#​1302)
  • Add support for prevent_initial_backfill to elasticstack_kibana_slo (#​1071)
  • [Refactor] Regenerate the SLO client using the current OpenAPI spec (#​1303)
  • Add support for data_view_id in the elasticstack_kibana_slo resource (#​1305)
  • Add support for unenrollment_timeout in elasticstack_fleet_agent_policy (#​1169)
  • Handle default value for allow_restricted_indices in elasticstack_elasticsearch_security_api_key (#​1315)
  • Fixed nil reference in kibana synthetics API client in case of response errors (#​1320)
  • Add support for agent_policy_ids in elasticstack_fleet_integration_policy (#​1131)

v0.11.17

Compare Source

  • Add elasticstack_apm_agent_configuration resource (#​1196)
  • Add support for timeslice_metric_indicator in elasticstack_kibana_slo (#​1195)
  • Add elasticstack_elasticsearch_ingest_processor_reroute data source (#​678)
  • Add support for supports_agentless to elasticstack_fleet_agent_policy (#​1197)
  • Ignore master_timeout when targeting Serverless projects (#​1207)

v0.11.16

Compare Source

  • Add headers for the provider connection (#​1057)
  • Migrate elasticstack_elasticsearch_system_user resource to Terraform plugin framework (#​1154)
  • Add custom endpoint configuration support for snapshot repository setup (#​1158)
  • Add description to elasticstack_kibana_security_role (#​1172)
  • Add elasticstack_kibana_synthetics_parameter resource (#​1155)
gruntwork-io/terratest (github.com/gruntwork-io/terratest)

v0.51.0

Compare Source

What's Changed

Full Changelog: gruntwork-io/terratest@v0.50.0...v0.51.0

stretchr/testify (github.com/stretchr/testify)

v1.11.1

Compare Source

This release fixes #​1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: stretchr/testify@v1.11.0...v1.11.1

v1.11.0

Compare Source

What's Changed

Functional Changes

v1.11.0 Includes a number of performance improvements.

Fixes
Documentation, Build & CI

New Contributors

Full Changelog: stretchr/testify@v1.10.0...v1.11.0

terraform-ibm-modules/ibmcloud-terratest-wrapper (github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper)

v1.60.15

Compare Source

Bug Fixes

v1.60.14

Compare Source

Bug Fixes
  • catalog tests use target commit ID instead of branch to support import offering from another fork (#​1047) (4366b15)

v1.60.13

Compare Source

Bug Fixes
  • corrected reference update in input merging function (#​1050) (93db892)

v1.60.12

Compare Source

Bug Fixes

v1.60.11

Compare Source

Bug Fixes
  • addons project setting require manual approval support (#​1049) (f884f43)

v1.60.10

Compare Source

Bug Fixes
  • allow HCL string defaults for array/object types in catalog validation (#​1046) (150dd46)

v1.60.9

Compare Source

Bug Fixes
  • add option for second terraform apply with given terraform vars (#​1040) (64ba5ee)

v1.60.8

Compare Source

Bug Fixes
  • fix OverrideInputMappings so that ref values can be overwritten (#​1044) (9c7ce90)

v1.60.7

Compare Source

Bug Fixes

v1.60.6

Compare Source

Bug Fixes

v1.60.5

Compare Source

Bug Fixes

v1.60.4

Compare Source

Bug Fixes

v1.60.3

Compare Source

Bug Fixes
  • update retry configurations for catalog and project operations (#​1032) (7704950)

v1.60.2

Compare Source

Bug Fixes

v1.60.1

Compare Source

Bug Fixes

v1.60.0

Compare Source

Features

v1.59.7

Compare Source

Bug Fixes

v1.59.6

Compare Source

Bug Fixes
  • enhance retry logic with deny list approach for error handling (#​1028) (fe61c13)

v1.59.5

Compare Source

Bug Fixes
  • add stagger configuration for parallel test execution to optimize API call spacing (#​1027) (3f2e47f)

v1.59.4

Compare Source

Bug Fixes
  • Expose retry variables and handle retry already exits (#​1026) (98b67be)

v1.59.3

Compare Source

Bug Fixes
  • add retry logic for project creation and deletion operations (#​1025) (93bf283)

v1.59.2

Compare Source

Bug Fixes
  • enhance permutation testing by adding skip logic for enabled dependencies (#​1023) (5b36f23)

v1.59.1

Compare Source

Bug Fixes

v1.59.0

Compare Source

Features
  • improve addon test dependency tree resolution (#​1020)
    - Fixes the dependecy tree resolution
    - added the ability to skip ceritan permutaion test combinations
    - simplified some code paths (3520879)

v1.58.12

Compare Source

Bug Fixes

v1.58.11

Compare Source

Bug Fixes

v1.58.10

Compare Source

Bug Fixes
  • deps: update module github.com/go-openapi/errors to v0.22.2 (#​1017) (5f41ba3)

v1.58.9

Compare Source

Bug Fixes

v1.58.8

Compare Source

Bug Fixes
  • update CatalogJson and CatalogInput structs to use omitempty and interface{} for options (#​1014) (a8b0d01)

v1.58.7

Compare Source

Bug Fixes
  • filter out files with no diff content in all environments (#​1013) (f53cb0d)

v1.58.6

Compare Source

Bug Fixes
  • simplify dependency detection by adding support for local ibm_catalog.json parsing (#​1012) (6e173fc)
terraform-ibm-modules/terraform-ibm-watsonx-saas-da (github.com/terraform-ibm-modules/terraform-ibm-watsonx-saas-da)

v1.12.0

Compare Source

Features

v1.11.0

Compare Source

Features

v1.10.1

Compare Source

Bug Fixes
  • corrected the service plan names for orchestrate service (#​323) (a692e31)

v1.10.0

Compare Source

Features

v1.9.38

Compare Source

Bug Fixes
  • disable COS-KMS encryption(storage-delegation) by default (#​310) (77a82ba)

v1.9.37

Compare Source

Bug Fixes

v1.9.36

Compare Source

Bug Fixes
  • deps: update terraform ibm to latest for deployable architectures (#​300) (d13904d)

v1.9.35

Compare Source

Bug Fixes

v1.9.34

Compare Source

Bug Fixes
  • deps: update terraform terraform-ibm-modules/cos/ibm to v10 (#​301) (f9a3814)

v1.9.33

Compare Source

Bug Fixes
  • deps: update terraform ibm to latest for deployable architectures (#​291) (2fbba2a)

v1.9.32

Compare Source

Bug Fixes
  • deps: update terraform terraform-ibm-modules/cos/ibm to v9.0.4 (#​290) (9c196fc)

v1.9.31

Compare Source

Bug Fixes
  • deps: update terraform ibm to latest for deployable architectures (#​287) (df52e36)

v1.9.30

[


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-ops
Copy link
Contributor Author

terraform-ibm-modules-ops commented Aug 9, 2025

ℹ Artifact update notice

File name: tests/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 18 additional dependencies were updated

Details:

Package Change
github.com/IBM-Cloud/power-go-client v1.12.0 -> v1.13.0
github.com/IBM/cloud-databases-go-sdk v0.8.0 -> v0.8.1
github.com/IBM/platform-services-go-sdk v0.85.1 -> v0.89.0
github.com/IBM/project-go-sdk v0.3.6 -> v0.3.9
github.com/go-git/go-git/v5 v5.16.2 -> v5.16.3
github.com/go-openapi/errors v0.22.1 -> v0.22.3
github.com/go-openapi/strfmt v0.23.0 -> v0.24.0
github.com/hashicorp/terraform-json v0.25.0 -> v0.27.2
github.com/zclconf/go-cty v1.16.2 -> v1.16.4
go.mongodb.org/mongo-driver v1.17.3 -> v1.17.4
golang.org/x/crypto v0.40.0 -> v0.43.0
golang.org/x/mod v0.25.0 -> v0.28.0
golang.org/x/net v0.41.0 -> v0.45.0
golang.org/x/sync v0.16.0 -> v0.17.0
golang.org/x/sys v0.34.0 -> v0.37.0
golang.org/x/text v0.27.0 -> v0.30.0
golang.org/x/tools v0.34.0 -> v0.37.0
sigs.k8s.io/yaml v1.4.0 -> v1.6.0

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

1 similar comment
@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

@terraform-ibm-modules-dev

/run pipeline

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants