Firewall
Creating a firewall rule
resources:
- type: compute.v1.firewall
name: allow-ssh
props:
network: global/networks/vpc1
direction: INGRESS
allowed:
- ip_protocol: tcp
ports:
- "22"
source_ranges:
- "{{CURRENT_IP}}/32"Last updated