Created
October 17, 2021 18:13
-
-
Save gmariette/3d12c53d27cec73078a27a1939c3ce53 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| { | |
| "app": "python3 app.py", | |
| "context": { | |
| "@aws-cdk/aws-apigateway:usagePlanKeyOrderInsensitiveId": true, | |
| "@aws-cdk/core:enableStackNameDuplicates": "true", | |
| "aws-cdk:enableDiffNoFail": "true", | |
| "@aws-cdk/core:stackRelativeExports": "true", | |
| "@aws-cdk/aws-ecr-assets:dockerIgnoreSupport": true, | |
| "@aws-cdk/aws-secretsmanager:parseOwnedSecretName": true, | |
| "@aws-cdk/aws-kms:defaultKeyPolicies": true, | |
| "@aws-cdk/aws-s3:grantWriteWithoutAcl": true, | |
| "@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount": true, | |
| "@aws-cdk/aws-rds:lowercaseDbIdentifier": true, | |
| "@aws-cdk/aws-efs:defaultEncryptionAtRest": true, | |
| "@aws-cdk/aws-lambda:recognizeVersionProps": true, | |
| "@aws-cdk/aws-cloudfront:defaultSecurityPolicyTLSv1.2_2021": true, | |
| "ENVIRONMENTS": { | |
| "UAT": { | |
| "context": { | |
| "region": "my_aws_region", | |
| "account": "my_aws_account" | |
| }, | |
| "variables" : { | |
| "MYVAR": "test", | |
| "MYVAR2": "test2" | |
| } | |
| }, | |
| "PROD": { | |
| "context": { | |
| "region": "my_aws_region", | |
| "account": "my_aws_account" | |
| }, | |
| "variables" : { | |
| "MYVAR": "prod", | |
| "MYVAR2": "prod2" | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment