Skip to content
Snippets Groups Projects
as.pp 471 B
Newer Older
# for AS access

class oracledb::as {

  include user::emagent

  # define one var to be used in .k5logins
  $oracleusers = [
    'jenhong@stanford.edu',
    'kmadduri@stanford.edu',
    'sanjeevk@stanford.edu',
    'toaivo@stanford.edu',
  ]

  base::iptables::rule { 'as_dba_access':
    description => 'AS VDI range for DBAs to access these systems',
    source      => ['172.20.200.0/23'],
    port        => ['1533','1534','1535'],
    protocol    => 'tcp',
  }
 
}