diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-27 23:41:11 -0400 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-27 23:41:11 -0400 |
commit | 9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b (patch) | |
tree | 524479f5d809b1b8fd29f75d7a732be8567bc2a1 /roles/private/tasks | |
parent | f9d62cc8a792b7b1a2c52a7d8102895473b3c72a (diff) | |
download | oldinfra-9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b.tar.gz oldinfra-9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b.zip |
borg
Diffstat (limited to 'roles/private/tasks')
-rw-r--r-- | roles/private/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/private/tasks/main.yml b/roles/private/tasks/main.yml index d7adb76..a099852 100644 --- a/roles/private/tasks/main.yml +++ b/roles/private/tasks/main.yml @@ -13,6 +13,13 @@ proto: tcp from: 100.64.0.0/10 +- name: allow https from docker and other internal stuffs + ufw: + rule: allow + port: '443' + proto: tcp + from: 172.16.0.0/12 + - name: restart ufw service: name=ufw state=restarted enabled=yes |