summaryrefslogtreecommitdiff
path: root/manifests/virtual/https.pp
blob: c93dc01458fc7c5433547eb8d437ef1fcfcb3edd (plain)
1
2
3
4
5
6
7
8
class firewall::virtual::https(
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $destination
) {
  class { "firewall::implementations::${implementation}::virtual::https":
    destination => $destination,
  }
}