Skip to content

Commit 0849f75

Browse files
committed
Merge remote-tracking branch 'origin/main' into HEAD
2 parents a80c0f7 + b0de2f8 commit 0849f75

35 files changed

+920
-425
lines changed

.buildkite/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
steps:
22
- label: Release
33
agents:
4-
image: "golang:1.25.1@sha256:bb979b278ffb8d31c8b07336fd187ef8fafc8766ebeaece524304483ea137e96"
4+
image: "golang:1.25.1@sha256:8305f5fa8ea63c7b5bc85bd223ccc62941f852318ebfbd22f53bbd0b358c07e1"
55
cpu: "16"
66
memory: "24G"
77
ephemeralStorage: "20G"

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,11 @@ jobs:
125125
- '8.14.3'
126126
- '8.15.5'
127127
- '8.16.2'
128-
- '8.17.0'
129-
- '8.18.3'
130-
- '9.0.3'
128+
- '8.17.10'
129+
- '8.18.7'
130+
- '8.19.3'
131+
- '9.0.7'
132+
- '9.1.3'
131133
steps:
132134
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
133135
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@
1313
- Migrate `elasticstack_kibana_action_connector` to the Terraform plugin framework ([#1269](https://github.com/elastic/terraform-provider-elasticstack/pull/1269))
1414
- Migrate `elasticstack_elasticsearch_security_role_mapping` resource and data source to Terraform Plugin Framework ([#1279](https://github.com/elastic/terraform-provider-elasticstack/pull/1279))
1515
- Add support for `inactivity_timeout` in `elasticstack_fleet_agent_policy` ([#641](https://github.com/elastic/terraform-provider-elasticstack/issues/641))
16+
- Migrate `elasticstack_elasticsearch_script` resource to Terraform Plugin Framework ([#1297](https://github.com/elastic/terraform-provider-elasticstack/pull/1297))
1617
- Add support for `kafka` output types in `elasticstack_fleet_output` ([#1302](https://github.com/elastic/terraform-provider-elasticstack/pull/1302))
1718
- Add support for `prevent_initial_backfill` to `elasticstack_kibana_slo` ([#1071](https://github.com/elastic/terraform-provider-elasticstack/pull/1071))
1819
- [Refactor] Regenerate the SLO client using the current OpenAPI spec ([#1303](https://github.com/elastic/terraform-provider-elasticstack/pull/1303))
1920
- Add support for `data_view_id` in the `elasticstack_kibana_slo` resource ([#1305](https://github.com/elastic/terraform-provider-elasticstack/pull/1305))
2021
- Add support for `unenrollment_timeout` in `elasticstack_fleet_agent_policy` ([#1169](https://github.com/elastic/terraform-provider-elasticstack/issues/1169))
2122
- Handle default value for `allow_restricted_indices` in `elasticstack_elasticsearch_security_api_key` ([#1315](https://github.com/elastic/terraform-provider-elasticstack/pull/1315))
23+
- Fixed `nil` reference in kibana synthetics API client in case of response errors ([#1320](https://github.com/elastic/terraform-provider-elasticstack/pull/1320))
2224
- Add support for `agent_policy_ids` in `elasticstack_fleet_integration_policy` ([#1131](https://github.com/elastic/terraform-provider-elasticstack/pull/1311))
2325

2426
## [0.11.17] - 2025-07-21

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ SWAGGER_VERSION ?= 8.7
1515

1616
GOVERSION ?= $(shell grep -e '^go' go.mod | cut -f 2 -d ' ')
1717

18-
STACK_VERSION ?= 9.0.3
18+
STACK_VERSION ?= 9.1.3
1919

2020
ELASTICSEARCH_NAME ?= terraform-elasticstack-es
2121
ELASTICSEARCH_ENDPOINTS ?= http://$(ELASTICSEARCH_NAME):9200

docs/resources/elasticsearch_script.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ resource "elasticstack_elasticsearch_script" "my_search_template" {
5555
### Optional
5656

5757
- `context` (String) Context in which the script or search template should run.
58-
- `elasticsearch_connection` (Block List, Max: 1, Deprecated) Elasticsearch connection configuration block. This property will be removed in a future provider version. Configure the Elasticsearch connection via the provider configuration instead. (see [below for nested schema](#nestedblock--elasticsearch_connection))
58+
- `elasticsearch_connection` (Block List, Deprecated) Elasticsearch connection configuration block. (see [below for nested schema](#nestedblock--elasticsearch_connection))
5959
- `params` (String) Parameters for the script or search template.
6060

6161
### Read-Only
6262

63-
- `id` (String) The ID of this resource.
63+
- `id` (String) Internal identifier of the resource
6464

6565
<a id="nestedblock--elasticsearch_connection"></a>
6666
### Nested Schema for `elasticsearch_connection`

docs/resources/elasticsearch_watch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
page_title: "elasticstack_elasticsearch_watch Resource - terraform-provider-elasticstack"
55
subcategory: "Elasticsearch"
66
description: |-
7-
Manage Watches. See, https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api.html
7+
Manage Watches. See the Watcher API documentation https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api.html for more details.
88
---
99

1010
# elasticstack_elasticsearch_watch (Resource)
1111

12-
Manage Watches. See, https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api.html
12+
Manage Watches. See the [Watcher API documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api.html) for more details.
1313

1414
## Example Usage
1515

go.mod

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ require (
1111
github.com/hashicorp/go-cty v1.5.0
1212
github.com/hashicorp/go-uuid v1.0.3
1313
github.com/hashicorp/go-version v1.7.0
14-
github.com/hashicorp/terraform-plugin-framework v1.15.1
14+
github.com/hashicorp/terraform-plugin-framework v1.16.0
1515
github.com/hashicorp/terraform-plugin-framework-jsontypes v0.2.0
1616
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
17-
github.com/hashicorp/terraform-plugin-go v0.28.0
17+
github.com/hashicorp/terraform-plugin-go v0.29.0
1818
github.com/hashicorp/terraform-plugin-log v0.9.0
1919
github.com/hashicorp/terraform-plugin-mux v0.20.0
20-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0
20+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1
2121
github.com/hashicorp/terraform-plugin-testing v1.13.3
2222
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
2323
github.com/oapi-codegen/runtime v1.1.2
@@ -27,11 +27,11 @@ require (
2727

2828
require (
2929
al.essio.dev/pkg/shellescape v1.6.0 // indirect
30-
cel.dev/expr v0.22.1 // indirect
30+
cel.dev/expr v0.24.0 // indirect
3131
cloud.google.com/go v0.120.0 // indirect
3232
cloud.google.com/go/auth v0.15.0 // indirect
3333
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
34-
cloud.google.com/go/compute/metadata v0.6.0 // indirect
34+
cloud.google.com/go/compute/metadata v0.7.0 // indirect
3535
cloud.google.com/go/iam v1.4.2 // indirect
3636
cloud.google.com/go/kms v1.21.1 // indirect
3737
cloud.google.com/go/longrunning v0.6.6 // indirect
@@ -59,7 +59,7 @@ require (
5959
github.com/Azure/go-autorest/tracing v0.6.1 // indirect
6060
github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 // indirect
6161
github.com/BurntSushi/toml v1.5.0 // indirect
62-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
62+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.29.0 // indirect
6363
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
6464
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
6565
github.com/Kunde21/markdownfmt/v3 v3.1.0 // indirect
@@ -131,7 +131,7 @@ require (
131131
github.com/charmbracelet/x/term v0.2.1 // indirect
132132
github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589 // indirect
133133
github.com/cloudflare/circl v1.6.1 // indirect
134-
github.com/cncf/xds/go v0.0.0-20250326154945-ae57f3c0d45f // indirect
134+
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect
135135
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
136136
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
137137
github.com/cyberphone/json-canonicalization v0.0.0-20241213102144-19d51d7fe467 // indirect
@@ -170,8 +170,8 @@ require (
170170
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
171171
github.com/go-git/go-billy/v5 v5.6.2 // indirect
172172
github.com/go-git/go-git/v5 v5.14.0 // indirect
173-
github.com/go-jose/go-jose/v4 v4.1.0 // indirect
174-
github.com/go-logr/logr v1.4.2 // indirect
173+
github.com/go-jose/go-jose/v4 v4.1.1 // indirect
174+
github.com/go-logr/logr v1.4.3 // indirect
175175
github.com/go-logr/stdr v1.2.2 // indirect
176176
github.com/go-openapi/analysis v0.23.0 // indirect
177177
github.com/go-openapi/errors v0.22.1 // indirect
@@ -216,18 +216,18 @@ require (
216216
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
217217
github.com/hashicorp/go-hclog v1.6.3 // indirect
218218
github.com/hashicorp/go-multierror v1.1.1 // indirect
219-
github.com/hashicorp/go-plugin v1.6.3 // indirect
219+
github.com/hashicorp/go-plugin v1.7.0 // indirect
220220
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
221221
github.com/hashicorp/golang-lru v1.0.2 // indirect
222222
github.com/hashicorp/hc-install v0.9.2 // indirect
223-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
223+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
224224
github.com/hashicorp/logutils v1.0.0 // indirect
225-
github.com/hashicorp/terraform-exec v0.23.0 // indirect
226-
github.com/hashicorp/terraform-json v0.25.0 // indirect
225+
github.com/hashicorp/terraform-exec v0.23.1 // indirect
226+
github.com/hashicorp/terraform-json v0.27.1 // indirect
227227
github.com/hashicorp/terraform-plugin-docs v0.22.0 // indirect
228-
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
228+
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
229229
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
230-
github.com/hashicorp/yamux v0.1.1 // indirect
230+
github.com/hashicorp/yamux v0.1.2 // indirect
231231
github.com/huandu/xstrings v1.5.0 // indirect
232232
github.com/in-toto/attestation v1.1.1 // indirect
233233
github.com/in-toto/in-toto-golang v0.9.0 // indirect
@@ -353,46 +353,46 @@ require (
353353
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
354354
github.com/yuin/goldmark v1.7.7 // indirect
355355
github.com/yuin/goldmark-meta v1.1.0 // indirect
356-
github.com/zclconf/go-cty v1.16.3 // indirect
356+
github.com/zclconf/go-cty v1.17.0 // indirect
357357
github.com/zeebo/errs v1.4.0 // indirect
358358
gitlab.com/digitalxero/go-conventional-commit v1.0.7 // indirect
359359
gitlab.com/gitlab-org/api/client-go v0.129.0 // indirect
360360
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
361361
go.mongodb.org/mongo-driver v1.17.3 // indirect
362362
go.opencensus.io v0.24.0 // indirect
363363
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
364-
go.opentelemetry.io/contrib/detectors/gcp v1.35.0 // indirect
364+
go.opentelemetry.io/contrib/detectors/gcp v1.36.0 // indirect
365365
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
366366
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
367-
go.opentelemetry.io/otel v1.35.0 // indirect
368-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
369-
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
370-
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
371-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
367+
go.opentelemetry.io/otel v1.37.0 // indirect
368+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
369+
go.opentelemetry.io/otel/sdk v1.37.0 // indirect
370+
go.opentelemetry.io/otel/sdk/metric v1.37.0 // indirect
371+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
372372
go.uber.org/atomic v1.11.0 // indirect
373373
go.uber.org/automaxprocs v1.6.0 // indirect
374374
go.uber.org/multierr v1.11.0 // indirect
375375
go.uber.org/zap v1.27.0 // indirect
376376
gocloud.dev v0.41.0 // indirect
377-
golang.org/x/crypto v0.41.0 // indirect
377+
golang.org/x/crypto v0.42.0 // indirect
378378
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
379379
golang.org/x/mod v0.27.0 // indirect
380380
golang.org/x/net v0.43.0 // indirect
381381
golang.org/x/oauth2 v0.30.0 // indirect
382-
golang.org/x/sync v0.16.0 // indirect
383-
golang.org/x/sys v0.35.0 // indirect
384-
golang.org/x/term v0.34.0 // indirect
385-
golang.org/x/text v0.28.0 // indirect
382+
golang.org/x/sync v0.17.0 // indirect
383+
golang.org/x/sys v0.36.0 // indirect
384+
golang.org/x/term v0.35.0 // indirect
385+
golang.org/x/text v0.29.0 // indirect
386386
golang.org/x/time v0.11.0 // indirect
387387
golang.org/x/tools v0.36.0 // indirect
388388
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
389389
google.golang.org/api v0.228.0 // indirect
390390
google.golang.org/appengine v1.6.8 // indirect
391391
google.golang.org/genproto v0.0.0-20250324211829-b45e905df463 // indirect
392-
google.golang.org/genproto/googleapis/api v0.0.0-20250409194420-de1ac958c67a // indirect
393-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250409194420-de1ac958c67a // indirect
394-
google.golang.org/grpc v1.72.1 // indirect
395-
google.golang.org/protobuf v1.36.6 // indirect
392+
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
393+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
394+
google.golang.org/grpc v1.75.1 // indirect
395+
google.golang.org/protobuf v1.36.9 // indirect
396396
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
397397
gopkg.in/mail.v2 v2.3.1 // indirect
398398
gopkg.in/warnings.v0 v0.1.2 // indirect

0 commit comments

Comments
 (0)