Merge pull request #3494 from TimeIncOSS/docs-aws-glacier

Fix a few nitpicks in docs for aws_glacier_vault
This commit is contained in:
Radek Simko 2015-10-13 23:52:52 +02:00
commit 6762a97b88
1 changed files with 6 additions and 9 deletions

View File

@ -15,7 +15,6 @@ Provides a Glacier Vault Resource. You can refer to the [Glacier Developer Guide
## Example Usage
```
resource "aws_sns_topic" "aws_sns_topic" {
name = "glacier-sns-topic"
}
@ -40,16 +39,14 @@ resource "aws_glacier_vault" "my_archive" {
"glacier:InitiateJob",
"glacier:GetJobOutput"
],
"Resource": [
"arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive"
]
"Resource": "arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive"
}
]
}
EOF
tags {
Test="MyArchive"
Test = "MyArchive"
}
}
```