diff options
author | binary <me@rgoncalves.se> | 2020-11-20 18:54:33 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-11-20 18:54:33 +0100 |
commit | 80e38128420f785fb3561f814f33881ff8ebff6d (patch) | |
tree | 7765cbb01a11a69dce02493d1e94abe8e78755be | |
parent | 310dcb72235a7d786eadb29969cd530175e049b2 (diff) | |
download | infrastructure-80e38128420f785fb3561f814f33881ff8ebff6d.tar.gz |
Add clients/guests, e.g. for wireguard
-rw-r--r-- | host_vars/bentonite.yml | 6 | ||||
-rw-r--r-- | host_vars/graphite.yml | 6 | ||||
-rw-r--r-- | host_vars/guest0.yml | 6 | ||||
-rw-r--r-- | host_vars/guest1.yml | 6 | ||||
-rw-r--r-- | host_vars/guest2.yml | 6 |
5 files changed, 30 insertions, 0 deletions
diff --git a/host_vars/bentonite.yml b/host_vars/bentonite.yml new file mode 100644 index 0000000..d615df9 --- /dev/null +++ b/host_vars/bentonite.yml @@ -0,0 +1,6 @@ +ansible_host: bentonite +ip: + in: 10.10.0.81 + out: 192.168.5.81 + +virtual: false diff --git a/host_vars/graphite.yml b/host_vars/graphite.yml new file mode 100644 index 0000000..7ee35ed --- /dev/null +++ b/host_vars/graphite.yml @@ -0,0 +1,6 @@ +ansible_host: graphite +ip: + in: 10.10.0.80 + out: 192.168.5.80 + +virtual: false diff --git a/host_vars/guest0.yml b/host_vars/guest0.yml new file mode 100644 index 0000000..76f7242 --- /dev/null +++ b/host_vars/guest0.yml @@ -0,0 +1,6 @@ +ansible_host: guest0 +ip: + in: 10.10.0.100 + out: 192.168.5.100 + +virtual: false diff --git a/host_vars/guest1.yml b/host_vars/guest1.yml new file mode 100644 index 0000000..48702bd --- /dev/null +++ b/host_vars/guest1.yml @@ -0,0 +1,6 @@ +ansible_host: guest1 +ip: + in: 10.10.0.101 + out: 192.168.5.101 + +virtual: false diff --git a/host_vars/guest2.yml b/host_vars/guest2.yml new file mode 100644 index 0000000..ee49906 --- /dev/null +++ b/host_vars/guest2.yml @@ -0,0 +1,6 @@ +ansible_host: guest2 +ip: + in: 10.10.0.102 + out: 192.168.5.102 + +virtual: false |