File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,22 @@ AWS CloudFormation. You may find some of these CloudFormation resources obsolete
66as AWS team fills in the gaps. There is also some more complex ones, or developed
77to suite specific needs, such as copying s3 objects between buckets
88
9+
10+ [ Collection of custom resources for Node.js can be found here] ( https://github.com/base2Services/cloudformation-custom-resources-nodejs )
11+
12+
13+ ## Usage
14+
15+ Clone the repository, install the dependencies, and zip up the folder as Lambda Deployment package.
16+ Note that ` boto3 ` is not packaged as dependency, as it is available in Lambda runtime itself by default.
17+
18+ ```
19+ git clone https://github.com/base2Services/cloudformation-custom-resources-python.git && \
20+ cd cloudformation-custom-resources-python && \
21+ docker run --rm -v $PWD:/src -w /src python:3.6 pip install -r requirements.txt -t . && \
22+ zip -r ~/cfn-ccr-python3.6.zip .
23+ ```
24+
925## Custom resources
1026
1127### Creating CloudFormation stack in specific region
You can’t perform that action at this time.
0 commit comments