Files
opentf/website/source/docs/providers/aws/r/db_subnet_group.html.markdown
2015-09-01 17:23:28 +02:00

918 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}"]
    tags {
        Name = "My DB subnet group"
    }
}

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.
  • tags - (Optional) A mapping of tags to assign to the resource.

Attributes Reference

The following attributes are exported:

  • id - The db subnet group name.