moto/tests/test_cloudformation/fixtures/fn_join.py
2019-10-31 10:36:05 -07:00

12 lines
284 B
Python

from __future__ import unicode_literals
template = {
"Resources": {"EC2EIP": {"Type": "AWS::EC2::EIP"}},
"Outputs": {
"EIP": {
"Description": "EIP for joining",
"Value": {"Fn::Join": [":", ["test eip", {"Ref": "EC2EIP"}]]},
}
},
}