Provisioning Custom AWS CloudFormation Resources With AWS Lambda Functions
- by Emre Yilmaz
- Dec 15, 2017
- AWS • Serverless • DevOps • AWS CloudFormation • AWS Lambda
AWS CloudFormation is the foundation of operational excellence on AWS. We code our infrastructure as JSON or YAML templates and test it as much as we need before deploying to production. We manage our infrastructure as code.
However, some new AWS resources may not be supported by AWS CloudFormation at the time they are launched. As of today, an example of this is the Elastic GPU resource. The solution is to define a custom CloudFormation resource and attach it to an AWS Lambda function which launches these resources. The Lambda function should also be in the same template. So let’s talk about how to do this in this blog post.
Continue reading the Provisioning Custom AWS CloudFormation Resources With AWS Lambda Functions blog post.