summaryrefslogtreecommitdiff
path: root/firewall.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'firewall.yaml')
-rw-r--r--firewall.yaml57
1 files changed, 0 insertions, 57 deletions
diff --git a/firewall.yaml b/firewall.yaml
index e06b12e1..0b24e174 100644
--- a/firewall.yaml
+++ b/firewall.yaml
@@ -16,63 +16,6 @@
- hosts: localhost
gather_facts: false
tasks:
- - name: default security group
- os_security_group:
- name: default
- description: Allow all outgoing traffic, and allow incoming ICMP (ping) and SSH connections
- state: present
-
- - name: default security group - allow outgoing ICMP
- os_security_group_rule:
- security_group: default
- direction: egress
- port_range_min: 0
- port_range_max: 255
- ethertype: IPv4
- protocol: icmp
- remote_ip_prefix: 0.0.0.0/0
-
- - name: default security group - allow outgoing TCP
- os_security_group_rule:
- security_group: default
- direction: egress
- port_range_min: 1
- port_range_max: 65535
- ethertype: IPv4
- protocol: tcp
- remote_ip_prefix: 0.0.0.0/0
-
- - name: default security group -- allow outgoing UDP
- os_security_group_rule:
- security_group: default
- direction: egress
- port_range_min: 1
- port_range_max: 65535
- ethertype: IPv4
- protocol: udp
- remote_ip_prefix: 0.0.0.0/0
-
- - name: default security group -- allow incoming ICMP
- os_security_group_rule:
- security_group: default
- direction: ingress
- port_range_min: 0
- port_range_max: 255
- ethertype: IPv4
- protocol: icmp
- remote_ip_prefix: 0.0.0.0/0
-
- - name: default security group -- allow incoming TCP on port 22 for SSH
- os_security_group_rule:
- security_group: default
- direction: ingress
- port_range_min: 22
- port_range_max: 22
- ethertype: IPv4
- protocol: tcp
- remote_ip_prefix: 0.0.0.0/0
-
- - name: open security group
os_security_group:
name: open
description: Allow inbound traffic on all ports. DO NOT USE EXCEPT FOR TESTING!!!