From a3f2e6bcd6d91f4f8fca13180ba7160b61bfc829 Mon Sep 17 00:00:00 2001 From: Salva Corts Date: Wed, 2 Mar 2022 13:44:22 +0100 Subject: [PATCH] Add prefix to vault path (#5510) * Add prefix to vault path * make drone Signed-off-by: Danny Kopping Co-authored-by: Danny Kopping --- .drone/drone.jsonnet | 2 +- .drone/drone.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone/drone.jsonnet b/.drone/drone.jsonnet index 90873f4d8d..5b4432f610 100644 --- a/.drone/drone.jsonnet +++ b/.drone/drone.jsonnet @@ -44,7 +44,7 @@ local pull_secret = secret('dockerconfigjson', 'secret/data/common/gcr', '.docke local github_secret = secret('github_token', 'infra/data/ci/github/grafanabot', 'pat'); // Injected in a secret because this is a public repository and having the config here would leak our environment names -local deploy_configuration = secret('deploy_config', 'common/loki_ci_autodeploy', 'config.json'); +local deploy_configuration = secret('deploy_config', 'secret/data/common/loki_ci_autodeploy', 'config.json'); local run(name, commands) = { diff --git a/.drone/drone.yml b/.drone/drone.yml index 5de25d3517..006d5d5f8d 100644 --- a/.drone/drone.yml +++ b/.drone/drone.yml @@ -1060,11 +1060,11 @@ name: ecr_secret_key --- get: name: config.json - path: common/loki_ci_autodeploy + path: secret/data/common/loki_ci_autodeploy kind: secret name: deploy_config --- kind: signature -hmac: b579eb083ef8bbfcaa2cca8f6f5501accb1c2e1093aca399731397ca6d13a308 +hmac: 835c89da39567393f70fb1848d9f010d3276a4ff2e7dd9089b8ea70eee7beb1a ...