Skip to content

Instantly share code, notes, and snippets.

@qushot
Created September 15, 2017 03:42
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/8f13ed953d68704232ac828db811d074 to your computer and use it in GitHub Desktop.
Save qushot/8f13ed953d68704232ac828db811d074 to your computer and use it in GitHub Desktop.
Cron許可設定スクリプト
#!/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'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment