Skip to content

Commit

Permalink
Update reference, drop other traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-robertson committed Jun 21, 2024
1 parent b6c8a6b commit 4084784
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
* `observium::apache`: Class: observium::apache inherits observium Configure apache server with virtual host for observium
* `observium::config`: Class: observium::config Configure observium configuration files lint:ignore:140chars lint:ignore:arrow_alignment
* `observium::database_init`: Class: obversium Init the observium database after install. lint:ignore:140chars
* `observium::firewall`: Class: observium::firewall Manage UFW on ubuntu
* `observium::firewalld`: Class: observium::firewall Manages firewall and opens ports for observium
* `observium::firewallufw`: Class: observium::firewallufw Manage UFW on ubuntu
* `observium::install`: Class: observium::install Creates folder structure for Observium, and install from tar
* `observium::mariadb`: Class: observium::mariadb Install mysql or mariadb - OS dependant
* `observium::packages`: Class: observium::packages Installs required packges for observium
Expand Down
7 changes: 7 additions & 0 deletions manifests/firewall.pp
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,11 @@
proto => 'tcp',
jump => 'accept',
}

# ensure we drop all other traffic
firewall { '999 drop all':
proto => 'all',
jump => 'drop',
before => undef,
}
}

0 comments on commit 4084784

Please sign in to comment.