From 2f4ef79b1658f5c78b91d68c68096f9472454df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Heleno?= Date: Wed, 21 Feb 2024 09:41:55 +0100 Subject: [PATCH] fix: make subdomain variable non-nullable --- variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/variables.tf b/variables.tf index cdfdd6d6..6eae4716 100644 --- a/variables.tf +++ b/variables.tf @@ -16,6 +16,7 @@ variable "subdomain" { description = "Subdomain of the cluster. Value used for the ingress' URL of the application." type = string default = "apps" + nullable = false } variable "argocd_project" {