|--Dockerfile
|--README.md
|--app.py
|--cdk-all-synth.sh
|--cdk.context.json
|--cdk.json
|--docker-compose-run.sh
|--docker-compose.yml
|--lambda
| |--ses_suppression_list_auto_register.py
| |--set_identity_notifications.py
| |--test_event
| | |--ses_suppression_list_auto_register.json
| | |--set_identity_notifications.json
|--output_template
| |--ses-suppression-register.yml
|--requirements.txt
|--ses_suppression_register
| |--__init__.py
| |--ses_suppression_register_stack copy.py
| |--ses_suppression_register_stack.py
|--setup.py
you can use docker env. please exec this shell commnad
./docker-compose-run.sh
-
By default, the docker image created will copy
~/.awsfrom your computer. Therefore, you can use the aws profile information of the host PC. -
If you want to use specific credentials that are not in aws profile, you can specify them when you run this script and put them in the docker environment variable.
-
$ AWS_ACCESS_KEY_ID={AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY={AWS_SECRET_ACCESS_KEY} AWS_SESSION_TOKEN={AWS_SESSION_TOKEN} ./docker-compose-run.sh
OR
-
$ AWS_ACCESS_KEY_ID={AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY={AWS_SECRET_ACCESS_KEY} ./docker-compose-run.sh
-
-
The MR must also include a CFN template created by the CDK
-
At this point you can now synthesize the CloudFormation template for this code.
$ ./cdk-all-synth.sh
- If you synthesize specific stack
$ cdk synth {stack_name}
To add additional dependencies, for example other CDK libraries, just add
them to your setup.py file and rerun the pip install -r requirements.txt
command.
- If you exec
cdk deploy, you inject command for give context - You can use the aws profile information below
~/.aws/credential. Specify profile name as a runtime argument- If not specified, the AWS credentials set in the environment variable are used.
$ cdk deploy -c identity={ses identity domain} --profile {Your AWS Profile name}
- Use AWS credentials set in the environment variable
$ cdk deploy -c identity={ses identity domain}
- you can test lambda script in local.
- If you run script in local, script use test_event.
- you can test some event case by edit json file in test_event
- You can use the aws profile information below
~/.aws/credential. Specify profile name as a runtime argument- If not specified, the AWS credentials set in the environment variable are used.
|--lambda
| |--ses_suppression_list_auto_register.py
| |--set_identity_notifications.py
| |--test_event
| | |--ses_suppression_list_auto_register.json
| | |--set_identity_notifications.json
$ cd lambda
$ python ses_suppression_list_auto_register.py
$ python set_identity_notifications.py
- Use AWS credentials set in the environment variable
$ cd lambda
$ python ses_suppression_list_auto_register.py {Your AWS Profile name}
$ python set_identity_notifications.py {Your AWS Profile name}
cdk lslist all stacks in the appcdk synthemits the synthesized CloudFormation templatecdk deploydeploy this stack to your default AWS account/regioncdk diffcompare deployed stack with current statecdk docsopen CDK documentation
Enjoy!