diff --git a/roles/logdetective/tasks/main.yml b/roles/logdetective/tasks/main.yml index c019b83e79..07e2eeb1d9 100644 --- a/roles/logdetective/tasks/main.yml +++ b/roles/logdetective/tasks/main.yml @@ -124,3 +124,12 @@ port: 8080/tcp permanent: true state: enabled + +- name: Allow HTTP and HTTPS in firewall + ansible.posix.firewalld: + service: "{{ item }}" + permanent: true + state: enabled + with_items: + - http + - https