From 38f6f573004661bee63e12b2a630e53ca384abe8 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 25 Oct 2021 19:28:37 +0200 Subject: [PATCH] change port to string because of an error message --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index b259c5d..6945eb8 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -12,7 +12,7 @@ - name: "Allow tcp traffic on defined ports" ufw: rule: "allow" - port: 22 + port: "22" proto: "tcp" - name: "Allow udp traffic on defined ports"