Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active September 21, 2018 16:19
Show Gist options
  • Save garystafford/a0d937f7a3f2fc495a1c04efef5661cf to your computer and use it in GitHub Desktop.
Save garystafford/a0d937f7a3f2fc495a1c04efef5661cf to your computer and use it in GitHub Desktop.
SOURCE_IP=<wordpress_ip_address>
PORT=9200
gcloud compute \
--project=wp-search-bot \
firewall-rules create elk-1-tcp-${PORT} \
--description=elk-1-tcp-${PORT} \
--direction=INGRESS \
--priority=1000 \
--network=default \
--action=ALLOW \
--rules=tcp:${PORT} \
--source-ranges=${SOURCE_IP} \
--target-tags=elk-1-tcp-${PORT}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment