Files
opentf/website/source/docs/providers/aws/r/db_subnet_group.html.markdown
Jack Pearkes f16485664d website: document db_subnet_group
cc/ @buth
2014-09-16 09:53:41 -04:00

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.