moto/tests/test_cloudformation/fixtures/fn_join.py

24 lines
476 B
Python
Raw Normal View History

2014-10-22 02:05:27 +00:00
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"}
]
]
}
}
}
}