From 82ab5ee85f354265f01ede7e9972d00736c7ec2f Mon Sep 17 00:00:00 2001 From: Steve Huff Date: Wed, 2 Aug 2017 04:11:14 -0400 Subject: [PATCH] update code sample for aws_alb data source (#1299) `alb_arn` variable is interpolated twice; this seems inadvertent --- website/docs/d/alb.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/d/alb.html.markdown b/website/docs/d/alb.html.markdown index 32107f202d2..00ef6a4e3e2 100644 --- a/website/docs/d/alb.html.markdown +++ b/website/docs/d/alb.html.markdown @@ -29,7 +29,7 @@ variable "alb_name" { data "aws_alb" "test" { arn = "${var.alb_arn}" - name = "${var.alb_arn}" + name = "${var.alb_name}" } ```