UNPKG

@mapbox/cloudfriend

Version:

Helper functions for assembling CloudFormation templates in JavaScript

25 lines (23 loc) 365 B
'use strict'; module.exports = () => { return { AWSTemplateFormatVersion: '2010-09-09', Parameters: { OutputThis: { Type: 'String' } }, Resources: { Topic: { Type: 'AWS::SNS::Topic' } }, Outputs: { ProvidedValue: { Value: { Ref: 'OutputThis' } } } }; };