[50a3f7]: / cloud / create-firewall-rules.sh

Download this file

7 lines (5 with data), 198 Bytes

1
2
3
4
5
gcloud compute firewall-rules create default-allow-http-8080 \
--allow tcp:8080 \
--source-ranges 0.0.0.0/0 \
--target-tags http-server \
--description "Allow port 8080 access to http-server"