Fix markdown format (#12090)

This commit is contained in:
Cuong Nguyen 2017-02-20 19:43:49 +07:00 committed by Paul Stack
parent bcadc4c2bd
commit 6d5feaf526
1 changed files with 12 additions and 8 deletions

View File

@ -4,7 +4,7 @@ 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 listens on port 80.
The example uses latest Ubuntu AMIs.
The example uses latest Ubuntu AMIs.
Make sure you change the list of availability zones that is applicable to your account and region.
@ -14,15 +14,19 @@ Running the example
For planning phase
terraform plan -var 'key_name={your_key_name}}'
```
terraform plan -var 'key_name={your_key_name}'
```
For apply phase
For apply phase
terraform apply -var 'key_name={your_key_name}}'
Once the stack is created, wait for few minutes and test the stack by launching a browser with ELB url.
```
terraform apply -var 'key_name={your_key_name}'
```
Once the stack is created, wait for few minutes and test the stack by launching a browser with ELB url.
To remove the stack
terraform destroy -var 'key_name={your_key_name}}'
```
terraform destroy -var 'key_name={your_key_name}'
```