Skip to content

Commit 7f738dc

Browse files
committed
Merge pull request hashicorp#2701 from laferrieren/master
Fixed a few typos
2 parents 206278b + aced886 commit 7f738dc

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

examples/aws-asg/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This example shows how to launch instances using Auto Scaling Groups.
44

5-
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.
5+
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.
66

77
The example uses latest Ubuntu AMIs.
88

@@ -14,15 +14,15 @@ Running the example
1414

1515
For planning phase
1616

17-
terraform plan -var 'key_name={your_key_name}}'
17+
terraform plan -var 'key_name={your_key_name}}'
1818

1919
For apply phase
2020

21-
terraform apply -var 'key_name={your_key_name}}'
21+
terraform apply -var 'key_name={your_key_name}}'
2222

23-
Once the stack is created, wait for few minsutes and test the stack by launching a browser with ELB url.
23+
Once the stack is created, wait for few minutes and test the stack by launching a browser with ELB url.
2424

2525
To remove the stack
2626

27-
terraform apply -var 'key_name={your_key_name}}'
27+
terraform destroy -var 'key_name={your_key_name}}'
2828

examples/aws-elb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ELB with stickiness Example
22

3-
The example launches a web server, installs nginx, creates an ELB for isnatnce. It also creates security groups for elb/instance
3+
The example launches a web server, installs nginx, creates an ELB for instance. It also creates security groups for elb/instance
44

55
To run, configure your AWS provider as described in https://www.terraform.io/docs/providers/aws/index.html
66

examples/aws-rds/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## Creating an RDS instance in AWS
22

3-
This example provides sample configuration for creating a mysql or postgres insatnce. For Oracle/SQL Servers, replace default values with appropriate values, they are not included in sample since the number of options are high.
3+
This example provides sample configuration for creating a mysql or postgres instance. For Oracle/SQL Servers, replace default values with appropriate values, they are not included in sample since the number of options are high.
44

55
The example creates db subnet groups and a VPC security group as inputs to the instance creation
66

77
For AWS provider, set up your AWS environment as outlined in https://www.terraform.io/docs/providers/aws/index.html
88

9-
If you need to use existing security groups and subnets, remove the sg.tf and subnets.tf files and replace the corresponidng sections in main.tf under aws_db_instance
9+
If you need to use existing security groups and subnets, remove the sg.tf and subnets.tf files and replace the corresponding sections in main.tf under aws_db_instance
1010

1111
Pass the password variable through your ENV variable.
1212

0 commit comments

Comments
 (0)