Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Fixed Bastion health check #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ resource "google_compute_instance" "bastion" {
command = <<EOF
READY=""
for i in $(seq 1 20); do
if gcloud compute ssh ${local.hostname} --project ${var.project} --zone ${var.region}-a --command uptime; then
if gcloud compute ssh ${local.hostname} --project ${var.project} --zone ${var.zone} --command uptime; then
READY="yes"
break;
fi
Expand Down