Skip to content

Commit

Permalink
Fixed typos in remote.html.markdown and connection.html.markdown. (#6195
Browse files Browse the repository at this point in the history
)
  • Loading branch information
David Castillo authored and stack72 committed Apr 15, 2016
1 parent 02b397f commit 12118b6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion website/source/docs/provisioners/connection.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ provisioner "file" {
* `timeout` - The timeout to wait for the connection to become available. This defaults
to 5 minutes. Should be provided as a string like "30s" or "5m".

* `script_path` - The path used to copy scripts to meant for remote execution.
* `script_path` - The path used to copy scripts meant for remote execution.

**Additional arguments only supported by the "ssh" connection type:**

Expand Down
16 changes: 8 additions & 8 deletions website/source/intro/getting-started/remote.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ from a local machine. This is great for testing and development,
however in production environments it is more responsible to run
Terraform remotely and store a master Terraform state remotely.

[Atlas](https://atlas.hashicorp.com/?utm_source=oss&utm_medium=getting-started&utm_campaign=terraform)
is HashiCorp's solution for Terraform remote runs and
[Atlas](https://atlas.hashicorp.com/?utm_source=oss&utm_medium=getting-started&utm_campaign=terraform),
HashiCorp's solution for Terraform remote, runs an
infrastructure version control. Running Terraform
in Atlas allows teams to easily version, audit, and collaborate
on infrastructure changes. Each proposed change generates
Expand All @@ -29,9 +29,9 @@ from long-running Terraform processes.
You can learn how to use Terraform remotely with our [interactive tutorial](https://atlas.hashicorp.com/tutorial/terraform/?utm_source=oss&utm_medium=getting-started&utm_campaign=terraform)
or you can follow the outlined steps below.

First, If you don't have an Atlas account, you can [create an account here](https://atlas.hashicorp.com/account/new?utm_source=oss&utm_medium=getting-started&utm_campaign=terraform).
First, If you don't have an Atlas account, you can [create an account here](https://atlas.hashicorp.com/account/new?utm_source=oss&utm_medium=getting-started&utm_campaign=terraform).

In order for the Terraform CLI to gain access to your Atlas account you're going to need to generate an access key. From the main menu, select your username in the top right corner to access your profile. Under `Personal`, click on the `Tokens` tab and hit generate.
In order for the Terraform CLI to gain access to your Atlas account you're going to need to generate an access key. From the main menu, select your username in the top right corner to access your profile. Under `Personal`, click on the `Tokens` tab and hit generate.

For the purposes of this tutorial you can use this token by exporting it to your local shell session:

Expand All @@ -41,11 +41,11 @@ $ export ATLAS_TOKEN=ATLAS_ACCESS_TOKEN
Replace `ATLAS_ACCESS_TOKEN` with the token generated earlier

Then configure [Terraform remote state storage](/docs/commands/remote.html) with the command:
```

```
$ terraform remote config -backend-config="name=ATLAS_USERNAME/getting-started"
```

Replace `ATLAS_USERNAME` with your Atlas username.

Before you [push](/docs/commands/push.html) your Terraform configuration to Atlas you'll need to start a local version control system with at least one commit. Here is an example using `git`.
Expand All @@ -70,7 +70,7 @@ infrastructure changes.
Running Terraform in Atlas creates a complete history of
infrastructure changes, a sort of version control
for infrastructure. Similar to application version control
systems such as Git or Subversion, this makes changes to
systems such as Git or Subversion, this makes changes to
infrastructure an auditable, repeatable,
and collaborative process. With so much relying on the
stability of your infrastructure, version control is a
Expand Down

0 comments on commit 12118b6

Please sign in to comment.