Skip to content

Commit

Permalink
fix: remove required env value, and allow init command to collect it
Browse files Browse the repository at this point in the history
Signed-off-by: João Vanzuita <joao@kubeshop.io>
Signed-off-by: Thiago Pagotto <pagottoo@gmail.com>
  • Loading branch information
João Vanzuita authored and pagottoo committed Jul 19, 2022
1 parent 17deeb9 commit 2879c6c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ The setup is extremely simple, create a `.env` file in the root folder, and add
| Variable | example |
|--------------------|------------------|
| AWS_PROFILE | default |
| AWS_REGION | us-east-1 |
| CLOUD_PROVIDER=aws | aws |
| HOSTED_ZONE_NAME | example.com |
| ADMIN_EMAIL | john@example.com |
Expand Down
1 change: 0 additions & 1 deletion configs/envvars.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ func CheckEnvironment() error {

requiredEnvValues := map[string]string{
"AWS_PROFILE": os.Getenv("AWS_PROFILE"),
"AWS_REGION": os.Getenv("AWS_REGION"),
}

for k, v := range requiredEnvValues {
Expand Down

0 comments on commit 2879c6c

Please sign in to comment.