moto/tests/test_cloudformation/fixtures/fn_join.py

10 lines
243 B
Python
Raw Normal View History

2014-10-22 02:05:27 +00:00
template = {
2019-10-31 15:44:26 +00:00
"Resources": {"EC2EIP": {"Type": "AWS::EC2::EIP"}},
2014-10-22 02:05:27 +00:00
"Outputs": {
"EIP": {
"Description": "EIP for joining",
2019-10-31 15:44:26 +00:00
"Value": {"Fn::Join": [":", ["test eip", {"Ref": "EC2EIP"}]]},
2014-10-22 02:05:27 +00:00
}
2019-10-31 15:44:26 +00:00
},
2014-10-22 02:05:27 +00:00
}