From df4124b6cc759e7c543800c70583d864181ce1d6 Mon Sep 17 00:00:00 2001 From: Domenico Testa Date: Tue, 14 Apr 2020 12:45:02 +0200 Subject: [PATCH] Committing the 'automatic' refactoring --- .vscode/settings.json | 3 +++ cdk.context.json | 4 ++++ cdk.json | 6 +----- 3 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 cdk.context.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ed8466e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": ".env/bin/python3" +} \ No newline at end of file diff --git a/cdk.context.json b/cdk.context.json new file mode 100644 index 0000000..ac51370 --- /dev/null +++ b/cdk.context.json @@ -0,0 +1,4 @@ +{ + "@aws-cdk/core:enableStackNameDuplicates": "true", + "aws-cdk:enableDiffNoFail": "true" +} diff --git a/cdk.json b/cdk.json index 39c301c..b4baa10 100644 --- a/cdk.json +++ b/cdk.json @@ -1,7 +1,3 @@ { - "app": "python3 app.py", - "context": { - "@aws-cdk/core:enableStackNameDuplicates": "true", - "aws-cdk:enableDiffNoFail": "true" - } + "app": "python3 app.py" }