From 13a2538d4bf073ab4b16f9467be8dc7c82de1022 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 1 Jun 2016 17:30:10 -0700 Subject: [PATCH] Updated eip_association example (#6957) The example is referencing a non-existent variable, `allocation_id`, within the `aws_eip` resource. I believe this should actually be `aws_eip.example.id` instead of `aws_eip.example.allocation_id`. --- .../source/docs/providers/aws/r/eip_association.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/aws/r/eip_association.html.markdown b/website/source/docs/providers/aws/r/eip_association.html.markdown index 308db8cee..cd79c5334 100644 --- a/website/source/docs/providers/aws/r/eip_association.html.markdown +++ b/website/source/docs/providers/aws/r/eip_association.html.markdown @@ -19,7 +19,7 @@ pre-existing or distributed to customers or users and therefore cannot be change ``` resource "aws_eip_association" "eip_assoc" { instance_id = "${aws_instance.web.id}" - allocation_id = "${aws_eip.example.allocation_id}" + allocation_id = "${aws_eip.example.id}" } resource "aws_instance" "web" {