From 7b8da45202e725d3b28c014bab92e80a346391bf Mon Sep 17 00:00:00 2001 From: maximenoel8 <55169628+maximenoel8@users.noreply.github.com> Date: Fri, 13 Oct 2023 13:28:50 +1300 Subject: [PATCH] Add public names output value to null backend (#1408) --- backend_modules/null/host/main.tf | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/backend_modules/null/host/main.tf b/backend_modules/null/host/main.tf index 442e214b3..24288d4d0 100644 --- a/backend_modules/null/host/main.tf +++ b/backend_modules/null/host/main.tf @@ -24,8 +24,9 @@ resource "null_resource" "domain" { output "configuration" { value = { - ids = ["1"] - hostnames = ["domain"] - macaddrs = [] + ids = ["1"] + hostnames = ["domain"] + macaddrs = [] + public_names = [] } }