diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fd1ccfc82..4f7808896 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -84,7 +84,7 @@ jobs: - 5601:5601 options: --health-cmd="curl http://localhost:5601/api/status" --health-interval=10s --health-timeout=5s --health-retries=10 fleet: - image: docker.elastic.co/beats/elastic-agent:${{ matrix.version }} + image: elastic/elastic-agent:${{ matrix.version }} env: SERVER_NAME: fleet FLEET_ENROLL: "1" @@ -126,7 +126,7 @@ jobs: - '8.15.5' - '8.16.2' - '8.17.0' - - '9.0.0-SNAPSHOT' + - '9.0.3' steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5 @@ -156,7 +156,7 @@ jobs: - id: setup-fleet name: Setup Fleet - if: matrix.version == '8.10.3' || matrix.version == '8.11.4' || matrix.version == '8.12.2' || matrix.version == '8.13.4' || matrix.version == '8.14.3' || matrix.version == '8.15.5' || matrix.version == '8.16.2' || matrix.version == '8.17.0' || matrix.version == '9.0.0-SNAPSHOT' + if: matrix.version == '8.10.3' || matrix.version == '8.11.4' || matrix.version == '8.12.2' || matrix.version == '8.13.4' || matrix.version == '8.14.3' || matrix.version == '8.15.5' || matrix.version == '8.16.2' || matrix.version == '8.17.0' || matrix.version == '9.0.3' run: |- make setup-kibana-fleet env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 84f48e65c..2bcd4541b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## [Unreleased] +## [0.11.17] - 2025-07-21 + - Add `elasticstack_apm_agent_configuration` resource ([#1196](https://github.com/elastic/terraform-provider-elasticstack/pull/1196)) - Add support for `timeslice_metric_indicator` in `elasticstack_kibana_slo` ([#1195](https://github.com/elastic/terraform-provider-elasticstack/pull/1195)) - Add `elasticstack_elasticsearch_ingest_processor_reroute` data source ([#678](https://github.com/elastic/terraform-provider-elasticstack/issues/678)) @@ -434,8 +436,9 @@ - Initial set of docs - CI integration -[Unreleased]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.16...HEAD -[0.11.15]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.15...v0.11.16 +[Unreleased]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.17...HEAD +[0.11.17]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.16...v0.11.17 +[0.11.16]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.15...v0.11.16 [0.11.15]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.14...v0.11.15 [0.11.14]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.13...v0.11.14 [0.11.13]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.12...v0.11.13 diff --git a/Makefile b/Makefile index 2f0c9b043..f4d3ccfe4 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .DEFAULT_GOAL = help SHELL := /bin/bash -VERSION ?= 0.11.16 +VERSION ?= 0.11.17 NAME = elasticstack BINARY = terraform-provider-${NAME} @@ -15,7 +15,7 @@ SWAGGER_VERSION ?= 8.7 GOVERSION ?= $(shell grep -e '^go' go.mod | cut -f 2 -d ' ') -STACK_VERSION ?= 9.0.0-SNAPSHOT +STACK_VERSION ?= 9.0.3 ELASTICSEARCH_NAME ?= terraform-elasticstack-es ELASTICSEARCH_ENDPOINTS ?= http://$(ELASTICSEARCH_NAME):9200 @@ -192,7 +192,7 @@ docker-fleet: docker-network docker-elasticsearch docker-kibana setup-kibana-fle -e KIBANA_FLEET_PASSWORD=$(ELASTICSEARCH_PASSWORD) \ --name $(FLEET_NAME) \ --network $(ELASTICSEARCH_NETWORK) \ - docker.elastic.co/beats/elastic-agent:$(STACK_VERSION) + elastic/elastic-agent:$(STACK_VERSION) .PHONY: docker-network