From dd6e75cc32725f86e9a267841fc34aa6ae38a2fe Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Fri, 17 Feb 2023 16:26:22 +0100 Subject: [PATCH] from -> allow_clients --- manifests/app_type.pp | 4 ++-- manifests/proxysql.pp | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manifests/app_type.pp b/manifests/app_type.pp index a833228..d1fffaf 100644 --- a/manifests/app_type.pp +++ b/manifests/app_type.pp @@ -339,8 +339,8 @@ define sunetdrive::app_type ( port => 443, } sunet::nftables::docker_expose { 'https': - from => ['any'], - port => 443, + allow_clients => ['any'], + port => 443, } } diff --git a/manifests/proxysql.pp b/manifests/proxysql.pp index 96b0cc1..f05426f 100644 --- a/manifests/proxysql.pp +++ b/manifests/proxysql.pp @@ -70,12 +70,12 @@ class sunetdrive::proxysql ( port => 6080, } sunet::nftables::docker_expose { 'stats_ports': - from => $tug_office, - port => 6080, + allow_clients => $tug_office, + port => 6080, } sunet::nftables::docker_expose { 'proxysql': - from => ['any'], - port => 6032, + allow_clients => ['any'], + port => 6032, } sunet::docker_compose { 'drive_proxysql_docker_compose':