diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-22 09:55:40 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-22 09:55:40 +0000 |
commit | 2857e26d44a04a3653ecad5582e1b2692bbc3cb2 (patch) | |
tree | 22c056f8f08b054fc0f593c167a413b173a7c4d4 | |
parent | 0143cbdcecdd34d90c7e1b2b1f8bcedca83c2c28 (diff) | |
download | rules-2857e26d44a04a3653ecad5582e1b2692bbc3cb2.tar.gz |
groups_vars: All hosts run ssh and healthcheck
-rw-r--r-- | group_vars/all.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/group_vars/all.yml b/group_vars/all.yml index 91af459..6a91b23 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -22,6 +22,16 @@ __global_domain_name_servers: - 8.8.8.8 - 1.1.1.1 +__global_services: + - name: ssh + protocol: tcp + port: 22 + + - name: healthcheck + protocol: tcp + port: 8000 + is_public: true + # __services: # - domain: status.test # is_public: true |