We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When executing cft with autoscale, cft fails to create EIPs. Error provided is "Invalid value 'VPC' for domain." CFT rolls back.
EIPs are successfully created.
See above.
Current firewall-new-vpc-v3.0.template contains code similar to the following:
"EIP1" : { "Type" : "AWS::EC2::EIP", "Properties" : { "Domain" : "VPC" }, "DependsOn": [ "VPC", "GatewayToInternet", "IGW" ] },
Modify firewall-new-vpc-v3.0.template as follows:
"EIP1" : { "Type" : "AWS::EC2::EIP", "Properties" : { "Domain" : "vpc" }, "DependsOn": [ "VPC", "GatewayToInternet", "IGW" ] },
Repeat these modifications for EIP1, EIP2, EIP3 and EIP4 definitions.
Deploy CFT as per instructions. The following will be the result:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When executing cft with autoscale, cft fails to create EIPs. Error provided is "Invalid value 'VPC' for domain." CFT rolls back.
Expected behavior
EIPs are successfully created.
Current behavior
See above.
Possible solution
Current firewall-new-vpc-v3.0.template contains code similar to the following:
"EIP1" : {
"Type" : "AWS::EC2::EIP",
"Properties" : {
"Domain" : "VPC"
},
"DependsOn": [ "VPC", "GatewayToInternet", "IGW" ]
},
Modify firewall-new-vpc-v3.0.template as follows:
"EIP1" : {
"Type" : "AWS::EC2::EIP",
"Properties" : {
"Domain" : "vpc"
},
"DependsOn": [ "VPC", "GatewayToInternet", "IGW" ]
},
Repeat these modifications for EIP1, EIP2, EIP3 and EIP4 definitions.
Steps to reproduce
Deploy CFT as per instructions. The following will be the result:
The text was updated successfully, but these errors were encountered: