clean up terraform
This commit is contained in:
parent
3887b9979b
commit
9a4a00c4e7
1 changed files with 4 additions and 60 deletions
|
@ -25,10 +25,10 @@ provider "libvirt" {
|
||||||
}
|
}
|
||||||
|
|
||||||
module "maestro" {
|
module "maestro" {
|
||||||
source = "../../tf-modules/debian"
|
source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
||||||
name = "maestro"
|
name = "maestro"
|
||||||
domain_name = "tf-maestro"
|
domain_name = "tf-maestro"
|
||||||
memory = 1024 * 10
|
memory = 10240
|
||||||
mac = "CA:FE:C0:FF:EE:08"
|
mac = "CA:FE:C0:FF:EE:08"
|
||||||
providers = {
|
providers = {
|
||||||
libvirt = libvirt
|
libvirt = libvirt
|
||||||
|
@ -36,67 +36,11 @@ module "maestro" {
|
||||||
}
|
}
|
||||||
|
|
||||||
module "bancomart" {
|
module "bancomart" {
|
||||||
source = "../../tf-modules/debian"
|
source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
||||||
name = "bancomart"
|
name = "bancomart"
|
||||||
domain_name = "tf-bancomart"
|
domain_name = "tf-bancomart"
|
||||||
memory = 1024 * 10
|
memory = 10240
|
||||||
providers = {
|
providers = {
|
||||||
libvirt = libvirt.jefke
|
libvirt = libvirt.jefke
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#module "manager" {
|
|
||||||
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
|
||||||
# name = "maestro"
|
|
||||||
# domain_name = "tf-maestro"
|
|
||||||
# memory = 1024
|
|
||||||
# mac = "CA:FE:C0:FF:EE:08"
|
|
||||||
# hypervisor_host = "atlas.hyp"
|
|
||||||
# providers = {
|
|
||||||
# libvirt = libvirt
|
|
||||||
# }
|
|
||||||
#}
|
|
||||||
#
|
|
||||||
#module "swarmpub1" {
|
|
||||||
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
|
||||||
# name = "swarmpub1"
|
|
||||||
# domain_name = "tf-swarmpub1"
|
|
||||||
# memory = 1024 * 5
|
|
||||||
# hypervisor_host = "atlas.hyp"
|
|
||||||
# providers = {
|
|
||||||
# libvirt = libvirt
|
|
||||||
# }
|
|
||||||
#}
|
|
||||||
#
|
|
||||||
#module "swarmpriv1" {
|
|
||||||
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
|
||||||
# name = "swarmpriv1"
|
|
||||||
# domain_name = "tf-swarmpriv1"
|
|
||||||
# memory = 1024 * 5
|
|
||||||
# hypervisor_host = "atlas.hyp"
|
|
||||||
# providers = {
|
|
||||||
# libvirt = libvirt
|
|
||||||
# }
|
|
||||||
#}
|
|
||||||
#
|
|
||||||
#module "swarmpub2" {
|
|
||||||
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
|
||||||
# name = "swarmpub2"
|
|
||||||
# domain_name = "tf-swarmpub2"
|
|
||||||
# memory = 1024 * 3
|
|
||||||
# hypervisor_host = "jefke.hyp"
|
|
||||||
# providers = {
|
|
||||||
# libvirt = libvirt.jefke
|
|
||||||
# }
|
|
||||||
#}
|
|
||||||
#
|
|
||||||
#module "swarmpriv2" {
|
|
||||||
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
|
||||||
# name = "swarmpriv2"
|
|
||||||
# domain_name = "tf-swarmpriv2"
|
|
||||||
# memory = 1024 * 3
|
|
||||||
# hypervisor_host = "jefke.hyp"
|
|
||||||
# providers = {
|
|
||||||
# libvirt = libvirt.jefke
|
|
||||||
# }
|
|
||||||
#}
|
|
||||||
|
|
Reference in a new issue