You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ When the token expires, you may need to reauthorise using `make aws-login`
105
105
For deployment, the following environment variables are required:
106
106
107
107
-`ACCOUNT_ID`: AWS Account ID
108
-
-`stack_name`: Name of the CloudFormation stack
108
+
-`STACK_NAME`: Name of the CloudFormation stack
109
109
-`VERSION_NUMBER`: Version number for the deployment
110
110
-`COMMIT_ID`: Git commit ID
111
111
-`LOG_RETENTION_IN_DAYS`: CloudWatch log retention period
@@ -139,10 +139,10 @@ There are `make` commands that are run as part of the CI pipeline and help alias
139
139
#### CDK targets
140
140
These are used to do common commands related to cdk
141
141
142
-
-`cdk-deploy` Builds and deploys the code to AWS. Requires `stack_name` environment variable.
142
+
-`cdk-deploy` Builds and deploys the code to AWS. Requires `STACK_NAME` environment variable.
143
143
-`cdk-synth` Converts the CDK code to cloudformation templates.
144
144
-`cdk-diff` Runs cdk diff, comparing the deployed stack with the local CDK code to identify differences.
145
-
-`cdk-watch` Syncs the code and CDK templates to AWS. This keeps running and automatically uploads changes to AWS. Requires `stack_name` environment variable.
145
+
-`cdk-watch` Syncs the code and CDK templates to AWS. This keeps running and automatically uploads changes to AWS. Requires `STACK_NAME` environment variable.
146
146
147
147
#### Clean and deep-clean targets
148
148
@@ -152,9 +152,11 @@ These are used to do common commands related to cdk
152
152
#### Linting and testing
153
153
154
154
-`lint` Runs lint for GitHub Actions and scripts.
155
+
-`lint-black` Runs black formatter on Python code.
156
+
-`lint-flake8` Runs flake8 linter on Python code.
155
157
-`lint-githubactions` Lints the repository's GitHub Actions workflows.
156
158
-`lint-githubaction-scripts` Lints all shell scripts in `.github/scripts` using ShellCheck.
157
-
-`test` Runs unit tests for CDK code.
159
+
-`test` Runs unit tests for Lambda functions.
158
160
-`cfn-guard` Runs cfn-guard against CDK resources.
0 commit comments