From 5b809c128b9b84c263f6456c35ca77ef2e770d07 Mon Sep 17 00:00:00 2001 From: Rob Crockett Date: Tue, 26 Sep 2023 08:48:47 -0400 Subject: [PATCH] Update config.go Updating spelling in config file ```diff - Coalesce returns the first vluae + Coalesce returns the first value ``` --- configs/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/config.go b/configs/config.go index 28a5570..6bc7c4a 100644 --- a/configs/config.go +++ b/configs/config.go @@ -45,7 +45,7 @@ type Terraform struct { var Regions = []string{"us-east-1", "us-east-2", "us-west-1", "us-west-2"} -// Coalesce returns the first non-empty vluae, but takes into account a loading order, +// Coalesce returns the first non-empty value, but takes into account a loading order, // which is CLI args > environment variables > config file > some default func Coalesce(arg *string, config *string, envvar *string, def *string) *string {