ansible-debops-infrastructure

DebOps and Ansible scripts to manage my infrastructure
git clone git://git.erethon.com/ansible-debops-infrastructure
Log | Files | Refs

commit b39a33caa3a732de754bc2b43b329dafc5ddcec8
parent 76e3b5688f371af3e732828c2a9d82676de75ae0
Author: Dionysis Grigoropoulos <dgrig@erethon.com>
Date:   Sun, 20 Dec 2020 00:59:49 +0200

oricono: Terraform fmt and don't autostart openbsd

Diffstat:
terraform/infrastructure/oricono/main.tf | 37+++++++++++++++++++------------------
1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/terraform/infrastructure/oricono/main.tf b/terraform/infrastructure/oricono/main.tf @@ -87,6 +87,7 @@ module "openbsd_68" { network_cidr = module.ori_network.cidr[0] network_host = "4" enable_cloud_init = false + host_autostart = false } module "xorg_enabled" { @@ -133,29 +134,29 @@ EOF module "kali_live" { source = "../../modules/libvirt_host" - host_name = "kali_live" - host_memory = "4096" - host_vcpu = 4 - storage_pool = var.libvirt_storage_pool - disks = [{"iso" : "/home/bsd/Disks/kali-linux-2020.4-live-amd64.iso" }] - network_id = module.ori_network.id - network_cidr = module.ori_network.cidr[0] - network_host = "22" + host_name = "kali_live" + host_memory = "4096" + host_vcpu = 4 + storage_pool = var.libvirt_storage_pool + disks = [{ "iso" : "/home/bsd/Disks/kali-linux-2020.4-live-amd64.iso" }] + network_id = module.ori_network.id + network_cidr = module.ori_network.cidr[0] + network_host = "22" enable_graphics = true - host_autostart = false + host_autostart = false } module "tails_live" { source = "../../modules/libvirt_host" - host_name = "tails_live" - host_memory = "2048" - host_vcpu = 2 - storage_pool = var.libvirt_storage_pool - disks = [{"iso" : "/home/bsd/Disks/tails-amd64-4.13.iso" }] - network_id = module.ori_network.id - network_cidr = module.ori_network.cidr[0] - network_host = "23" + host_name = "tails_live" + host_memory = "2048" + host_vcpu = 2 + storage_pool = var.libvirt_storage_pool + disks = [{ "iso" : "/home/bsd/Disks/tails-amd64-4.13.iso" }] + network_id = module.ori_network.id + network_cidr = module.ori_network.cidr[0] + network_host = "23" enable_graphics = true - host_autostart = false + host_autostart = false }