From 48c413cef4e3974c1e603ec5238e2c2357efe856 Mon Sep 17 00:00:00 2001 From: MiguelNdeCarvalho Date: Fri, 18 Oct 2024 17:28:05 +0000 Subject: [PATCH] variables.tf: Set load_balancer_class to nlb --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 1c9eb03..ff22d09 100644 --- a/variables.tf +++ b/variables.tf @@ -95,7 +95,7 @@ variable "svc_port" { variable "load_balancer_class" { type = string - default = null + default = "service.k8s.aws/nlb" description = "The class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix. This field can only be set when the svc_type is LoadBalancer" }