summaryrefslogtreecommitdiff
path: root/firewall.yaml
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2017-10-24 11:30:10 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2017-10-24 16:51:01 +0000
commit80788aafa54fb299b0b457a59038e9cd049ac0b6 (patch)
tree1346118891770ccb587435936abb706fd0969431 /firewall.yaml
parent94805485673f88abc4d48674725220df7f6111c8 (diff)
downloadinfrastructure-80788aafa54fb299b0b457a59038e9cd049ac0b6.tar.gz
firewall: Add rules for haste server
Diffstat (limited to 'firewall.yaml')
-rw-r--r--firewall.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/firewall.yaml b/firewall.yaml
index 7c863220..2ef201be 100644
--- a/firewall.yaml
+++ b/firewall.yaml
@@ -98,6 +98,22 @@
protocol: udp
remote_ip_prefix: 0.0.0.0/0
+ - name: haste-server security group
+ os_security_group:
+ name: haste-server
+ description: Allow incoming TCP requests for haste server
+ state: present
+
+ - name: haste-server security group -- allow incoming TCP on port 7777 for Haste server
+ os_security_group_rule:
+ security_group: haste-server
+ direction: ingress
+ port_range_min: 7777
+ port_range_max: 7777
+ ethertype: IPv4
+ protocol: tcp
+ remote_ip_prefix: 0.0.0.0/0
+
- name: git-server security group
os_security_group:
name: git-server