From fa4ff8fcf30fe161e40e5dcd952f65f3b211a7de Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Wed, 5 Apr 2023 17:40:21 +0200 Subject: [PATCH] remove some variable defaults --- variables.tf | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/variables.tf b/variables.tf index 77d4242..7dd5a82 100644 --- a/variables.tf +++ b/variables.tf @@ -9,10 +9,6 @@ variable "disk_size" { variable "admin_authorized_keys" { type = list(string) - default = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim", - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop" - ] } variable "memory" { @@ -32,35 +28,29 @@ variable "insecure_password" { variable "use_host_cert" { type = bool - default = true + default = false } variable "disk_pool" { - type = string - default = "disk" + type = string } variable "disk_base" { - type = string - default = "debian-bookworm.qcow2" + type = string } variable "disk_base_pool" { - type = string - default = "iso" + type = string } variable "cloudinit_pool" { - type = string - default = "init" + type = string } variable "bridge_name" { type = string - default = "dmzbr" } variable "ca_host" { type = string - default = "hermes.dmz" }