Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active September 21, 2018 16:19
Embed
What would you like to do?
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