MEschenbacher's Wireguard Saltstack Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.2KB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
12345678910111213141516171819202122232425262728293031323334353637
  1. # wireguard-formula
  2. This formula installs the WireGuard utils and manages interfaces (config files) including
  3. peers. Configuration is done via pillar (see `pillar.example`).
  4. **Important**: On every configuration change, this formula restarts the wireguard interface in
  5. order to apply any changes.
  6. # Requirements
  7. - systemd: This formula makes use of wireguard-shipped systemd service files
  8. - wireguard kernel module
  9. # Installation
  10. See the full [Salt Formulas installation and usage instructions](http://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html).
  11. # Configuration
  12. All configuration is done via pillar data. See `pillar.example` for examples.
  13. This means in particular, that you do not have to use any of the following
  14. states youself.
  15. Some keys can be present in the config file multiple times. To do this, you can
  16. start a list under a key. If the configuration format allows a single comma
  17. separated string for the respective key, they all will appear in the config
  18. file. Also see `pillar.example`.
  19. # Available states
  20. No states are documented, just include the `wireguard` in the `top.sls` file.
  21. ```
  22. base:
  23. 'some_minion':
  24. - wireguard
  25. ```