aws::db-subnet-group¶
Create a db subnet group.
Example¶
aws::db-subnet-group db-subnet-group
name: "db-subnet-group-example"
description: "db subnet group description"
subnets: [
$(aws::subnet subnet-us-east-2a),
$(aws::subnet subnet-us-east-2b)
]
tags: {
Name: "db-subnet-group-example"
}
end
Attributes¶
Attribute | Description |
---|---|
tags map | A list of tags. |
description | The description for the DB subnet group. (Required) |
name | The name for the DB subnet group. (Required) |
subnets list | The list of Subnets for the DB subnet group. (Required) |
Outputs¶
Attribute | Description |
---|---|
arn | The ARN of the RDS resource. |