Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Created May 13, 2020 16:52
Show Gist options
  • Save gwsu2008/3c4da60aacd74f25ae29dbc3d82f6c50 to your computer and use it in GitHub Desktop.
Save gwsu2008/3c4da60aacd74f25ae29dbc3d82f6c50 to your computer and use it in GitHub Desktop.
AWS Cloudformation Custom Resources
MyCustomResource:
DependsOn: SnsTopic
Type: "Custom::TestLambdaCrossStackRef"
Properties:
ServiceToken: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:myTestLambda"
StackName: !Ref "AWS::StackName"
SnsTopicArn: !Ref SnsTopic
SuccessRoleArn: !GetAtt "SnSSuccessfulRole.Arn"
FailureRoleArn: !GetAtt "SnSFailedRole.Arn"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment