test eip allocation via CloudFormation for VPC and EC2 classic

This commit is contained in:
Joseph Lawson 2014-10-21 21:55:08 -04:00
commit 835259607a
3 changed files with 65 additions and 1 deletions

View file

@ -0,0 +1,9 @@
from __future__ import unicode_literals
template = {
"Resources": {
"EC2EIP": {
"Type": "AWS::EC2::EIP"
}
}
}

View file

@ -0,0 +1,12 @@
from __future__ import unicode_literals
template = {
"Resources": {
"VPCEIP": {
"Type": "AWS::EC2::EIP",
"Properties": {
"Domain": "vpc"
}
}
}
}