10 lines
243 B
Python
10 lines
243 B
Python
template = {
|
|
"Resources": {"EC2EIP": {"Type": "AWS::EC2::EIP"}},
|
|
"Outputs": {
|
|
"EIP": {
|
|
"Description": "EIP for joining",
|
|
"Value": {"Fn::Join": [":", ["test eip", {"Ref": "EC2EIP"}]]},
|
|
}
|
|
},
|
|
}
|