8000 Add additional UFW rules (#284) · Devkant21/postgres@6092d74 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6092d74

Browse files
authored
Add additional UFW rules (supabase#284)
* add additional ufw rules * bump postgres version
1 parent 452fd20 commit 6092d74

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

ansible/tasks/finalize-ami.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@
2121
tags:
2222
- install-pgbouncer
2323

24+
- name: UFW - Allow connections to http (80)
25+
ufw:
26+
rule: allow
27+
port: http
28+
tags:
29+
- install-supabase-internal
30+
31+
- name: UFW - Allow connections to https (443)
32+
ufw:
33+
rule: allow
34+
port: https
35+
tags:
36+
- install-supabase-internal
37+
2438
- name: UFW - Deny all other incoming traffic by default
2539
ufw:
2640
state: enabled

common.vars.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "14.1.0.65"
1+
postgres-version = "14.1.0.66"

0 commit comments

Comments
 (0)
0