12 lines
284 B
Python
Raw Normal View History

2014-10-21 22:05:27 -04:00
from __future__ import unicode_literals
template = {
2019-10-31 08:44:26 -07:00
"Resources": {"EC2EIP": {"Type": "AWS::EC2::EIP"}},
2014-10-21 22:05:27 -04:00
"Outputs": {
"EIP": {
"Description": "EIP for joining",
2019-10-31 08:44:26 -07:00
"Value": {"Fn::Join": [":", ["test eip", {"Ref": "EC2EIP"}]]},
2014-10-21 22:05:27 -04:00
}
2019-10-31 08:44:26 -07:00
},
2014-10-21 22:05:27 -04:00
}