Skip to content

Instantly share code, notes, and snippets.

@danp3d
danp3d / template.yaml
Created July 7, 2019 01:47
Custom CloudFormation Templates - Setting PhysicalResourceId's and checking against !Ref output
---
Resources:
# lambda function to be used as a custom resource
MyLambda:
Type: AWS::Lambda::Function
Properties:
Handler: index.handler
Role: !GetAtt BasicExecutionRole.Arn
Runtime: python3.7
Timeout: 60