AWS::RDS::DBSubnetGroup
The AWS::RDS::DBSubnetGroup resource creates a database subnet group.
Subnet groups must contain at least two subnets in two different Availability Zones in
the same region.
For more information, see Working with DB subnet groups in the Amazon RDS User Guide.
Syntax
To declare this entity in your Amazon CloudFormation template, use the following syntax:
JSON
{ "Type" : "AWS::RDS::DBSubnetGroup", "Properties" : { "DBSubnetGroupDescription" :String, "DBSubnetGroupName" :String, "SubnetIds" :[ String, ... ], "Tags" :[ Tag, ... ]} }
YAML
Type: AWS::RDS::DBSubnetGroup Properties: DBSubnetGroupDescription:StringDBSubnetGroupName:StringSubnetIds:- StringTags:- Tag
Properties
DBSubnetGroupDescription-
The description for the DB subnet group.
Required: Yes
Type: String
Update requires: No interruption
DBSubnetGroupName-
The name for the DB subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 lowercase alphanumeric characters or hyphens. Must not be "Default".
Example:
mysubnetgroupRequired: No
Type: String
Update requires: Replacement
SubnetIds-
The EC2 Subnet IDs for the DB subnet group.
Required: Yes
Type: List of String
Update requires: No interruption
Tags-
An optional array of key-value pairs to apply to this DB subnet group.
Required: No
Type: List of Tag
Update requires: No interruption
Return values
Ref
When you pass the logical ID of this resource to the intrinsic Reffunction, Refreturns the name of the DB subnet group.
For more information about using the Reffunction, see Ref.
Examples
JSON
{ "AWSTemplateFormatVersion": "2010-09-09", "Resources": { "myDBSubnetGroup": { "Type": "AWS::RDS::DBSubnetGroup", "Properties": { "DBSubnetGroupDescription": "description", "SubnetIds": [ "subnet-7b5b4112", "subnet-7b5b4115" ], "Tags": [ { "Key": "String", "Value": "String" } ] } } } }
YAML
--- AWSTemplateFormatVersion: "2010-09-09" Resources: myDBSubnetGroup: Properties: DBSubnetGroupDescription: description SubnetIds: - subnet-7b5b4112 - subnet-7b5b4115 Tags: - Key: String Value: String Type: "AWS::RDS::DBSubnetGroup"