Skip to content

Commit

Permalink
roachprod: hardcode gce project for side-eye secret
Browse files Browse the repository at this point in the history
  • Loading branch information
tbg committed Dec 19, 2024
1 parent 3b6f3c6 commit a8d331e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/roachprod/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ var installLocalCmds = map[string]map[string]*exec.Cmd{
},
}

var sideEyeSecretCmd = exec.Command("gcloud", "secrets", "versions", "access", "latest", "--secret", "side-eye-key")
var sideEyeSecretCmd = exec.Command("gcloud",
"--project", "cockroach-ephemeral",
"secrets", "versions", "access", "latest", "--secret", "side-eye-key")

// SortedCmds TODO(peter): document
func SortedCmds() []string {
Expand Down

0 comments on commit a8d331e

Please sign in to comment.