Question:
I am trying to reapply a cloudformer template from another account but in the same region, EU-West-2 (London). When I apply the template I get the following error:
1 2 3 |
10:05:10 UTC+0100 CREATE_FAILED AWS::RDS::DBSecurityGroup dbsgdefault DBSecurityGroup is not supported in this region Client Request Token:Console-CreateStack-1bdd4259-7132-4d44-8ba9-c3e7af892413 |
The relevant part of the template is:
1 2 3 4 5 6 7 |
"dbsgdefault": { "Type": "AWS::RDS::DBSecurityGroup", "Properties": { "GroupDescription": "default" } } |
How come this can’t be reapplied to the account?
Answer:
I got same error when used eu-central-1
region. After examining awslabs example I assumed that in that (and probably also cn-north-1
region) you have to not use AWS::RDS::DBSecurityGroup
and use AWS::EC2::SecurityGroup
within VPCSecurityGroups property instead.