moto/tests/test_cloudformation/fixtures/fn_join.py

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-22 02:05:27 +00:00
template = {
"Resources": {"EC2EIP": {"Type": "AWS::EC2::EIP"}},
"Outputs": {
"EIP": {
"Description": "EIP for joining",
"Value": {"Fn::Join": [":", ["test eip", {"Ref": "EC2EIP"}]]},
}
},
}