Documentation formatting fix

This commit is contained in:
Christoph Blecker 2016-10-05 16:09:10 -07:00
parent 4523639614
commit 3934279339
No known key found for this signature in database
GPG Key ID: B34A59A9D39F838B
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ Stores the state as an artifact in [Manta](https://www.joyent.com/manta).
terraform remote config \
-backend=manta \
-backend-config="path=random/path" \
-backend-config="objecName=terraform.tfstate"
-backend-config="objecName=terraform.tfstate"
```
## Example Referencing
@ -26,7 +26,7 @@ data "terraform_remote_state" "foo" {
backend = "manta"
config {
path = "random/path"
objectName = "terraform.tfstate"
objectName = "terraform.tfstate"
}
}
```