# A Class using the sunet::onlyoffice::doc resurce
class net::onlyoffice () {
  $docserver = sunet::onlyoffice::docs { 'document_server': name => 'document_server' }

  sunet::nftables::allow { 'allow-http':
    from => any,
    port => 80,
  }

  sunet::nftables::allow { 'allow-https':
    from => any,
    port => 443,
  }
}