A West
A West

Reputation: 51

AWS CloudFormation: CREATE_FAILED DBSecurityGroup is not supported in this region (London)

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:

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:

"dbsgdefault": {
  "Type": "AWS::RDS::DBSecurityGroup",
  "Properties": {
    "GroupDescription": "default"
  }
}

How come this can't be reapplied to the account?

Upvotes: 5

Views: 2732

Answers (1)

svobol13
svobol13

Reputation: 1950

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.

Upvotes: 5

Related Questions