From 138a6b67a408fdf73dfffc7196aded93c4bf03e4 Mon Sep 17 00:00:00 2001 From: stack72 Date: Tue, 19 Jan 2016 10:12:50 +0000 Subject: [PATCH] Change the AWS Launch Configuration Documentation examples from ami to image_id --- .../docs/providers/aws/r/launch_configuration.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/source/docs/providers/aws/r/launch_configuration.html.markdown b/website/source/docs/providers/aws/r/launch_configuration.html.markdown index 59ac6252a..2f1345261 100644 --- a/website/source/docs/providers/aws/r/launch_configuration.html.markdown +++ b/website/source/docs/providers/aws/r/launch_configuration.html.markdown @@ -15,7 +15,7 @@ Provides a resource to create a new launch configuration, used for autoscaling g ``` resource "aws_launch_configuration" "as_conf" { name = "web_config" - ami = "ami-408c7f28" + image_id = "ami-408c7f28" instance_type = "t1.micro" } ``` @@ -33,7 +33,7 @@ with `name_prefix`. Example: ``` resource "aws_launch_configuration" "as_conf" { name_prefix = "terraform-lc-example-" - ami = "ami-408c7f28" + image_id = "ami-408c7f28" instance_type = "t1.micro" lifecycle { @@ -66,7 +66,7 @@ for more information or how to launch [Spot Instances][3] with Terraform. ``` resource "aws_launch_configuration" "as_conf" { - ami = "ami-408c7f28" + image_id = "ami-408c7f28" instance_type = "t1.micro" spot_price = "0.001" lifecycle {