mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-15 16:00:26 -04:00
741 B
741 B
layout, page_title, sidebar_current
| layout | page_title | sidebar_current |
|---|---|---|
| aws | AWS: aws_db_subnet_group | docs-aws-resource-db-subnet-group |
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 security group.description- (Required) The description of the DB security group.subnet_ids- (Required) A list of ingress rules.
Attributes Reference
The following attributes are exported:
id- The db subnet group name.