Adding tfvars

This commit is contained in:
Philippe Caseiro 2021-03-22 20:25:39 +01:00
parent dcc186405f
commit babcd09e3d
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,22 @@
dns_zones = [
{
domain = "cadoles.com",
a_records = {
hapy = [ "192.168.1.108" ],
amon = [ "192.168.1.1"]
},
cname_records = {
hapy = "virt.cadoles.com."
}
},
{
domain = "cadol.es",
a_records = {
hapy = [ "192.168.1.108" ],
amon = [ "192.168.1.1"]
},
cname_records = {
hapy = "virt.cadol.es."
}
}
]

24
terraform/networks.tfvars Normal file
View File

@ -0,0 +1,24 @@
virtual_networks = {
internet = {
vlan_id = "4",
adress_range = {
ar_type = "IP4",
size = "10",
ip4 = "192.168.1.28"
},
dns = "192.168.5.53",
gateway = "192.168.1.1",
clusters = [ "0" ]
},
office = {
vlan_id = "10",
adress_range = {
ar_type = "IP4",
size = "30",
ip4 = "192.168.10.100"
},
dns = "192.168.5.53",
gateway = "192.168.10.254",
clusters = [ "0" ]
}
}