diff --git a/internal/config/config.go b/internal/config/config.go index 79ec8f0..ee46b61 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -58,9 +58,14 @@ type ProfileConfig struct { } type ProfileServices struct { + Console ProfileServicesConsole `yaml:"console"` CodeCommit ProfileServicesCodeCommit `yaml:"codecommit"` } +type ProfileServicesConsole struct { + GovCloud bool `yaml:"gov-cloud"` +} + type ProfileServicesCodeCommit struct { Repositories []string `yaml:"repositories"` } @@ -80,6 +85,9 @@ func Create() error { AWSProfile: "default", }, Services: ProfileServices{ + Console: ProfileServicesConsole{ + GovCloud: false, + }, CodeCommit: ProfileServicesCodeCommit{ Repositories: []string{}, },