mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-17 13:00:44 -04:00
798 B
798 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| aws | AWS: aws_db_subnet_group | docs-aws-resource-db-subnet-group | Provides an RDS DB subnet group resource. |
aws_db_subnet_group
Provides an RDS DB subnet group resource.
Example Usage
resource "aws_db_subnet_group" "default" {
name = "main"
description = "Our main group of subnets"
subnet_ids = ["${aws_subnet.frontend.id}", "${aws_subnet.backend.id}"]
}
Argument Reference
The following arguments are supported:
name- (Required) The name of the DB subnet group.description- (Required) The description of the DB subnet group.subnet_ids- (Required) A list of VPC subnet IDs.
Attributes Reference
The following attributes are exported:
id- The db subnet group name.