updated doccs to include correct destroy statement fix typo

This commit is contained in:
Nick Laferriere 2015-07-12 13:59:50 -04:00
parent 206278bac0
commit dba343acc8

View File

@ -2,7 +2,7 @@
This example shows how to launch instances using Auto Scaling Groups. This example shows how to launch instances using Auto Scaling Groups.
This creates a security group, launch configuration, auto scaling group and an ELB. The user data for launch configuration installs nginx and it listnes on port 80. This creates a security group, launch configuration, auto scaling group and an ELB. The user data for launch configuration installs nginx and it listens on port 80.
The example uses latest Ubuntu AMIs. The example uses latest Ubuntu AMIs.
@ -20,9 +20,9 @@ For apply phase
terraform apply -var 'key_name={your_key_name}}' terraform apply -var 'key_name={your_key_name}}'
Once the stack is created, wait for few minsutes and test the stack by launching a browser with ELB url. Once the stack is created, wait for few minutes and test the stack by launching a browser with ELB url.
To remove the stack To remove the stack
terraform apply -var 'key_name={your_key_name}}' terraform destroy -var 'key_name={your_key_name}}'