You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the command to filter zones based on provided region is not only affecting europe region.
The brackets wrapping the $REGION is not allowing the filter to do exact match, which results in the zones retrieved to contain zones not found in the provided region, causing the creation of instance to fail.
Suggest to change gcloud compute zones list --filter="region:($REGION)" --format="value(name)" gcloud compute zones list --filter="region:($REGION_2)" --format="value(name)"
to gcloud compute zones list --filter="region:$REGION" --format="value(name)" gcloud compute zones list --filter="region:$REGION_2" --format="value(name)"
The text was updated successfully, but these errors were encountered:
Based on Load Balancing and Auto scaling - Challenge Lab :
the command to filter zones based on provided region is not only affecting europe region.
The brackets wrapping the
$REGION
is not allowing the filter to do exact match, which results in the zones retrieved to contain zones not found in the provided region, causing the creation of instance to fail.Suggest to change
gcloud compute zones list --filter="region:($REGION)" --format="value(name)"
gcloud compute zones list --filter="region:($REGION_2)" --format="value(name)"
to
gcloud compute zones list --filter="region:$REGION" --format="value(name)"
gcloud compute zones list --filter="region:$REGION_2" --format="value(name)"
The text was updated successfully, but these errors were encountered: