From 76d626f2a45610b6289401376ef274c14ceaad46 Mon Sep 17 00:00:00 2001
From: Pim Kunis <pim@kunis.nl>
Date: Fri, 7 Apr 2023 18:06:53 +0200
Subject: [PATCH 1/2] support fixed address

---
 debian/main.tf      | 1 +
 debian/variables.tf | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/debian/main.tf b/debian/main.tf
index 39f4cb1..7688c72 100644
--- a/debian/main.tf
+++ b/debian/main.tf
@@ -24,4 +24,5 @@ module "tf_debian_vm" {
   ca_host               = coalesce(var.ca_host, module.invariants.ca_host)
   memory                = var.memory
   data_disk             = var.data_disk
+  fixed_address         = var.fixed_address
 }
diff --git a/debian/variables.tf b/debian/variables.tf
index 4e37c07..79def4e 100644
--- a/debian/variables.tf
+++ b/debian/variables.tf
@@ -56,3 +56,8 @@ variable "data_disk" {
   type    = string
   default = null
 }
+
+variable "fixed_address" {
+  type = string
+  default = null
+}

From 96154a0370a8917492d23bc33192bd42662007ff Mon Sep 17 00:00:00 2001
From: Pim Kunis <pim@kunis.nl>
Date: Sat, 8 Apr 2023 18:17:34 +0200
Subject: [PATCH 2/2] fix null variable

---
 debian/variables.tf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/variables.tf b/debian/variables.tf
index 79def4e..5c268f2 100644
--- a/debian/variables.tf
+++ b/debian/variables.tf
@@ -59,5 +59,5 @@ variable "data_disk" {
 
 variable "fixed_address" {
   type = string
-  default = null
+  default = ""
 }