From 33c6e4856528284408309a91e023fa9a686aed21 Mon Sep 17 00:00:00 2001 From: Doug W <55553826+dwhyrock@users.noreply.github.com> Date: Thu, 20 Nov 2025 08:48:39 -0500 Subject: [PATCH] Allow artifacts.elastic.co URL for manifest downloads (#11219) * Adding artifacts.elastic.co as valid domain for manifest URLs * Temp set branch to 9.2 * Remove temp testing code (cherry picked from commit ce19518dc51253ed4bea28f57af277c65c4e07d0) --- dev-tools/mage/manifest/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tools/mage/manifest/manifest.go b/dev-tools/mage/manifest/manifest.go index 64b95d55dc6..5fa36606431 100644 --- a/dev-tools/mage/manifest/manifest.go +++ b/dev-tools/mage/manifest/manifest.go @@ -85,7 +85,7 @@ var ( errorNotAllowedManifestURL = errors.New("the provided ManifestURL is not allowed URL") ) -var AllowedManifestHosts = []string{"snapshots.elastic.co", "staging.elastic.co"} +var AllowedManifestHosts = []string{"snapshots.elastic.co", "staging.elastic.co", "artifacts.elastic.co"} var PlatformPackages = map[string]string{ "darwin/amd64": "darwin-x86_64.tar.gz",