syscom-dev-environment/group_vars/all.yml

37 lines
1.2 KiB
YAML

---
ansible_python_interpreter: python3
base_domain: csclub.internal
ldap_base: "{{ base_domain.split('.') | map('regex_replace', '^(.*)$', 'dc=\\1') | join(',') }}"
krb_realm: "{{ base_domain.upper() }}"
# the subnet for the containers
ipv4_subnet: 192.168.100.0/24
# the gateway for the containers - this should be the IP
# address of lxcbr1
ipv4_gateway: 192.168.100.1
# The upstream DNS IP address (check your resolv.conf).
# The address below is one of Cloudflare's public DNS resolvers.
# Replace this with your local DNS resolver if desired.
upstream_dns: 1.0.0.1
# The IP addresses for the VMs.
# Make sure the IP addresses of the other containers are in the
# ipv4_subnet which you specified above.
dns_ipv4_addr: 192.168.100.4
mail_ipv4_addr: 192.168.100.52
coffee_ipv4_addr: 192.168.100.20
auth1_ipv4_addr: 192.168.100.117
fs00_ipv4_addr: 192.168.100.35
phosphoric_acid_ipv4_addr: 192.168.100.114
cobalamin_ipv4_addr: 192.168.100.18
uw00_ipv4_addr: 192.168.100.234
# The outsider is on a different subnet than the other containers
outsider_ipv4_subnet: 192.168.101.0/24
# This should be the IP address of lxcbr2
outsider_ipv4_gateway: 192.168.101.1
# The IP address of the outsider container
outsider_ipv4_addr: 192.168.101.2