add test for Fn::Join
This commit is contained in:
parent
184d5be54a
commit
8aabda0786
2 changed files with 43 additions and 1 deletions
23
tests/test_cloudformation/fixtures/fn_join.py
Normal file
23
tests/test_cloudformation/fixtures/fn_join.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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"}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue