-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
template/*-rest-api: Clean up templated environment variables
- Loading branch information
Showing
7 changed files
with
11 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
'skuba': patch | ||
--- | ||
|
||
template/\*-rest-api: Clean up templated environment variables | ||
|
||
- `AWS_NODEJS_CONNECTION_REUSE_ENABLED` is no longer required with AWS SDK V3. | ||
|
||
- The `env` boilerplate in Gantry values files was largely unnecessary and confusing. | ||
|
||
Our templates prefer to declare configuration values directly in `src/config.ts`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
environment: dev | ||
env: | ||
SOME_ENVIRONMENT_VARIABLE: dev-value | ||
|
||
maxInstanceCount: 1 | ||
minInstanceCount: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
environment: prod | ||
env: | ||
SOME_ENVIRONMENT_VARIABLE: prod-value | ||
|
||
maxInstanceCount: 10 | ||
minInstanceCount: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
environment: dev | ||
env: | ||
SOME_ENVIRONMENT_VARIABLE: dev-value | ||
|
||
maxInstanceCount: 1 | ||
minInstanceCount: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
environment: prod | ||
env: | ||
SOME_ENVIRONMENT_VARIABLE: prod-value | ||
|
||
maxInstanceCount: 10 | ||
minInstanceCount: 3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters