Sha256: 15e285152262e5797d5c7002cf333989ae06a76fc2719d049c3758c5dd436db8
Contents?: true
Size: 1.13 KB
Versions: 9
Compression:
Stored size: 1.13 KB
Contents
{ "AWSTemplateFormatVersion": "2010-09-09", "Description": "Tests the CFN outputs resource", "Parameters": { "EntryTopic": { "Description": "SNS topic that will be used", "Type": "String" }, "EntryQueue": { "Description": "The queue to be polled", "Type": "String" }, "Name": { "Description": "The CFN name to be loaded", "Type": "String" } }, "Outputs": { "Queue": { "Description": "The queue to be polled", "Value": { "Fn::GetAtt": ["OutputsResource", "Queue"] } }, "Topic": { "Description": "The topic to be polled", "Value": { "Fn::GetAtt": ["OutputsResource", "Topic"] } } }, "Resources": { "OutputsResource": { "Type": "Custom::CloudFormationOutputs", "Properties": { "ServiceToken" : {"Ref" : "EntryTopic"}, "Name": { "Ref": "Name" } } } } }
Version data entries
9 entries across 9 versions & 1 rubygems