Skip to content

Instantly share code, notes, and snippets.

@qushot
Created September 19, 2017 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qushot/df90f70ca88aec03c1b80de65143c4f0 to your computer and use it in GitHub Desktop.
Save qushot/df90f70ca88aec03c1b80de65143c4f0 to your computer and use it in GitHub Desktop.
Cron,Taskqueueの両方を設定するスクリプト
#!/bin/sh
# Project set for Cloud SDK
PROJECT_ID=YOUR_PROJECT_ID
gcloud config set project $PROJECT_ID
# cron allow
gcloud beta app firewall-rules create 1 \
--action=allow \
--source-range='0.1.0.1' \
--description='default -> deny, cron -> allow'
# taskqueue allow
gcloud beta app firewall-rules create 2 \
--action=allow \
--source-range='0.1.0.2' \
--description='default -> deny, taskqueue -> allow'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment