Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fleet-server URL population for cloud test #4572

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -465,4 +465,5 @@ test-cloude2e: prepare-test-context ## - Run cloude2e tests with full setup (sl
test-cloude2e-set: ## Run cloude2e test
$(eval FLEET_SERVER_URL := $(shell make --no-print-directory -C ${CLOUD_TESTING_BASE} cloud-get-fleet-url))
make -C ${CLOUD_TESTING_BASE} cloud-get-fleet-url
FLEET_SERVER_URL="${FLEET_SERVER_URL}" go test -v -tags=cloude2e -count=1 -race -p 1 ./testing/cloude2e
cd testing; \
FLEET_SERVER_URL="${FLEET_SERVER_URL}" go test -v -tags=cloude2e -count=1 -race -p 1 ./...
2 changes: 1 addition & 1 deletion dev-tools/cloud/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
ec = {
source = "elastic/ec"
version = "0.12.1"
version = "0.12.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/cloud/terraform/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ output "kibana_url" {
}

output "fleet_url" {
value = ec_deployment.deployment.integrations_server.endpoints != null ? ec_deployment.deployment.integrations_server.endpoints.fleet : ""
value = ec_deployment.deployment.integrations_server.https_endpoint
description = "The secure Fleet URL"
}