From b29625e4e682c352996f846d5eca30c54498287c Mon Sep 17 00:00:00 2001 From: James Riley Wilburn Date: Wed, 21 Aug 2024 09:45:45 -0400 Subject: [PATCH] feat: add team_internal config key (#224) This adds a `team_internal` config key to be used to store if the current team is CloudQuery-internal. --- config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config/config.go b/config/config.go index 7b259e3..1d97b55 100644 --- a/config/config.go +++ b/config/config.go @@ -14,6 +14,7 @@ const configPath = "cloudquery/config.json" var configKeys = []string{ "team", + "team_internal", } // SetConfigHome sets the configuration home directory - useful for testing