11 lines
214 B
Puppet
11 lines
214 B
Puppet
class firewall::rules::out::https (
|
|
Array[Stdlib::Port] $ports = [443],
|
|
) {
|
|
|
|
$ports.each |$port| {
|
|
nftables::rule { "default_out-https_tcp_${port}":
|
|
content => "tcp dport ${port} accept",
|
|
}
|
|
}
|
|
}
|