Move bazel remote cache token to a space that more employees have access to (#123402) (#123675)

(cherry picked from commit 70c2b8b98e)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Brian Seeders 2022-01-25 12:37:16 -05:00 committed by GitHub
parent 53b6f7199e
commit c15d061451
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -61060,7 +61060,7 @@ async function setupRemoteCache(repoRootPath) {
try {
const {
stdout
} = await Object(_child_process__WEBPACK_IMPORTED_MODULE_3__["spawn"])('vault', ['read', '-field=readonly-key', 'secret/kibana-issues/dev/bazel-remote-cache'], {
} = await Object(_child_process__WEBPACK_IMPORTED_MODULE_3__["spawn"])('vault', ['read', '-field=readonly-key', 'secret/ui-team/kibana-bazel-remote-cache'], {
stdio: 'pipe'
});
apiKey = stdout.trim();

View file

@ -60,7 +60,7 @@ export async function setupRemoteCache(repoRootPath: string) {
try {
const { stdout } = await spawn(
'vault',
['read', '-field=readonly-key', 'secret/kibana-issues/dev/bazel-remote-cache'],
['read', '-field=readonly-key', 'secret/ui-team/kibana-bazel-remote-cache'],
{
stdio: 'pipe',
}