Skip to content

Fix ordering of $PROJECT and $BUCKET #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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 demo
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ export -f input

export SHARED_PROJECT=moz-fx-data-shar-nonprod-efed
export COMPUTE_INSTANCE_NAME=instance-1
export BUCKET=gs://$PROJECT
export PUBSUB_SUBSCRIPTION=telemetry-decoded.demo-subscription
export COMPUTE_SERVICE_ACCOUNT=demo-service-account
export DATAFLOW_SERVICE_ACCOUNT=dataflow-service-account
export DATAFLOW_PUBSUB_SUBSCRIPTION=structured-decoded.demo-sink
export ZONE=us-west1-a
export PROJECT="${PROJECT:-$USER-sandbox-demo}"
export BUCKET=gs://$PROJECT
echo "Project ID is ${PROJECT}"
[[ $(gcloud config get-value project 2>/dev/null) == "$PROJECT" ]] || gcloud config set project $PROJECT

Expand Down