aboutsummaryrefslogtreecommitdiffstats
path: root/group_vars/all.yml
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2023-04-02 11:44:08 +0200
committerRomain Gonçalves <me@rgoncalves.se>2023-04-02 11:45:09 +0200
commit35498e61b26112b56dac4cdda213ebd69bca30b9 (patch)
tree996006ab542948069d37ac6459977cb0f8cf8631 /group_vars/all.yml
parent0c70ea19a91fa28cc5f97364ce1276ad5ae6f898 (diff)
downloadrules-35498e61b26112b56dac4cdda213ebd69bca30b9.tar.gz
feat: ansible-vault with gopass + granular host_vars and group_vars
Diffstat (limited to 'group_vars/all.yml')
-rw-r--r--group_vars/all.yml57
1 files changed, 0 insertions, 57 deletions
diff --git a/group_vars/all.yml b/group_vars/all.yml
deleted file mode 100644
index 35abefd..0000000
--- a/group_vars/all.yml
+++ /dev/null
@@ -1,57 +0,0 @@
----
-
-# ansible overrides
-
-ansible_hostname: "{{ ansible_host }}"
-ansible_become_method: su
-
-# roles overrides
-
-wireguard_domain_controller: "{{ __global_domain_controller }}"
-relayd_domain_name: "{{ __domain_name }}"
-nfsclient_server: stack0
-httpd_use_nfs: true
-acme_rules: "[
- {% for rule in __services if 'domain' in rule %}
- {{ {'domain': rule.domain} }},
- {% endfor %}
- ]"
-pf_rules: "[
- {% for rule in __services if
- 'port' in rule and 'protocol' in rule and 'name' in rule %}
- {{ {'name': rule.name, 'port': rule.port, 'protocol': rule.protocol} }},
- {% endfor %}
- ]"
-relayd_rules: "[
- {% for rule in __services if
- 'domain' in rule and 'port' in rule %}
- {{ {'name': rule.name, 'domain': rule.domain, 'port': rule.port} }},
- {% endfor %}
- ]"
-
-# playbook specific
-
-__is_vm: false
-
-__ip:
- external:
- internal:
-
-__services: {}
-__domain_name: rgoncalves.se
-
-__global_domain_controller: dc0
-__global_domain_name_hosts: owo
-__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
remember that computers suck.