Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
243 B
Python
Raw Normal View History

2014-10-21 22:05:27 -04:00
template = {
"Resources": {"EC2EIP": {"Type": "AWS::EC2::EIP"}},
"Outputs": {
"EIP": {
"Description": "EIP for joining",
"Value": {"Fn::Join": [":", ["test eip", {"Ref": "EC2EIP"}]]},
}
},
}