From 1d2849912abffe6d7229f47ed9ac7f0594fb0004 Mon Sep 17 00:00:00 2001 From: Xavier2p Date: Sat, 9 Sep 2023 12:51:22 +0200 Subject: [PATCH] fix issue in import var --- .github/workflows/ci.yml | 2 +- hosts/scariff/monitoring/variables.tf | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 418e1cf..c3970e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: run: terraform init - name: Validate - run: terraform validate -no-color + run: terraform validate - name: Plan run: terraform plan diff --git a/hosts/scariff/monitoring/variables.tf b/hosts/scariff/monitoring/variables.tf index 65c5996..bb3c121 100644 --- a/hosts/scariff/monitoring/variables.tf +++ b/hosts/scariff/monitoring/variables.tf @@ -3,6 +3,11 @@ variable "domain_name" { description = "Domain name for the server" } +variable "network_name" { + type = string + description = "Name of the network" +} + variable "hostname" { type = string description = "Name of the server"