From b56d2443595c206b1d009944fb1da070918235a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Heleno?= Date: Wed, 21 Feb 2024 09:42:54 +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 619f118..f12e794 100644 --- a/variables.tf +++ b/variables.tf @@ -18,6 +18,7 @@ variable "subdomain" { description = "Subdomain of the cluster. Value used for the ingress' URL of the application." type = string default = "apps" + nullable = false } variable "cluster_issuer" {