UNPKG

@mapbox/cloudfriend

Version:

Helper functions for assembling CloudFormation templates in JavaScript

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