From 3939236f8792f84f1b4d59bc2b2f7e943cb2b846 Mon Sep 17 00:00:00 2001 From: Joel Date: Tue, 2 Jun 2015 14:05:55 -0500 Subject: [PATCH] Let people know elbs support tags --- website/source/docs/providers/aws/r/elb.html.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/source/docs/providers/aws/r/elb.html.markdown b/website/source/docs/providers/aws/r/elb.html.markdown index 1f4a0b507..9c63788d3 100644 --- a/website/source/docs/providers/aws/r/elb.html.markdown +++ b/website/source/docs/providers/aws/r/elb.html.markdown @@ -46,6 +46,10 @@ resource "aws_elb" "bar" { idle_timeout = 400 connection_draining = true connection_draining_timeout = 400 + + tags { + Name = "foobar-terraform-elb" + } } ``` @@ -65,6 +69,7 @@ The following arguments are supported: * `idle_timeout` - (Optional) The time in seconds that the connection is allowed to be idle. Default: 60. * `connection_draining` - (Optional) Boolean to enable connection draining. * `connection_draining_timeout` - (Optional) The time in seconds to allow for connections to drain. +* `tags` - (Optional) A mapping of tags to assign to the resource. Exactly one of `availability_zones` or `subnets` must be specified: this determines if the ELB exists in a VPC or in EC2-classic.