fix(github): expire ssh keys after 15m (#5094)

* fix(github): expire ssh keys after 5m

* fix(github): bump expiry to 15m
This commit is contained in:
Vibhu Pandey 2024-05-27 20:31:29 +05:30 committed by GitHub
parent 10b543dff1
commit 956a4d081d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -51,4 +51,4 @@ jobs:
make build-frontend-amd64 make build-frontend-amd64
make run-signoz make run-signoz
EOF EOF
gcloud compute ssh ${GCP_INSTANCE} --zone ${GCP_ZONE} --tunnel-through-iap --project ${GCP_PROJECT} --command "${COMMAND}" gcloud compute ssh ${GCP_INSTANCE} --zone ${GCP_ZONE} --ssh-key-expire-after=15m --tunnel-through-iap --project ${GCP_PROJECT} --command "${COMMAND}"

View File

@ -52,4 +52,4 @@ jobs:
make build-frontend-amd64 make build-frontend-amd64
make run-signoz make run-signoz
EOF EOF
gcloud compute ssh ${GCP_INSTANCE} --zone ${GCP_ZONE} --tunnel-through-iap --project ${GCP_PROJECT} --command "${COMMAND}" gcloud compute ssh ${GCP_INSTANCE} --zone ${GCP_ZONE} --ssh-key-expire-after=15m --tunnel-through-iap --project ${GCP_PROJECT} --command "${COMMAND}"