-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
96 additions
and
15 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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
service: safebox | ||
provider: ssm | ||
prefix: '/test/' | ||
|
||
generate: | ||
- type: types-node | ||
path: env.d.ts | ||
- type: dotenv | ||
path: .env | ||
|
||
cloudformation-stacks: | ||
- '{{.stage}}-shared-infra-SharedInfraServerless' | ||
- '{{.stage}}-user-debug-stack' | ||
|
||
config: | ||
defaults: | ||
DB_NAME: 'database name updated' | ||
CF_OUTPUT_API_ENDPOINT: '{{.internalDomainName}}' | ||
NEW: 'endpoint-{{.stage}}' | ||
NEW2: 'endpoint updated' | ||
NEW3: 'endpoint updated' | ||
AWS_REGION: '{{.region}}' | ||
AWS_ACCOUNT: '{{.account}}' | ||
CF_OUTPUT_BUCKET_ARN: '{{.BucketArn}}' | ||
CF_OUTPUT_ENDPOINT: '{{.Endpoint}}' | ||
|
||
prod: | ||
DB_NAME: 'production db name' | ||
|
||
dev: | ||
DB_NAME: 'dev db name' | ||
|
||
shared: | ||
SHARED_KEY: 'shared key' | ||
|
||
secret: | ||
defaults: | ||
API_KEY: 'key of the api endpoint' | ||
DB_SECRET: 'database secret' | ||
|
||
shared: | ||
APOLLO_KEY: 'apollo key' |
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,19 @@ | ||
service: safebox | ||
provider: ssm | ||
|
||
config: | ||
defaults: | ||
DB_NAME: 'database name updated' | ||
CF_OUTPUT_API_ENDPOINT: '{{.internalDomainName}}' | ||
NEW: 'endpoint-{{.stage}}' | ||
|
||
shared: | ||
SHARED_KEY: 'shared key' | ||
|
||
secret: | ||
defaults: | ||
API_KEY: 'key of the api endpoint' | ||
DB_SECRET: 'database secret' | ||
|
||
shared: | ||
APOLLO_KEY: 'apollo key' |