Unverified Commit 39bc5e6f authored by Samori Gorse's avatar Samori Gorse Committed by GitHub
Browse files

typo: Updated terraform example (#13401)

The terraform example had a couple of issues:

- Tags was missing a `=`
- Attribute list is not supported
No related merge requests found
Showing with 11 additions and 11 deletions
+11 -11
......@@ -129,17 +129,17 @@ resource "aws_dynamodb_table" "dynamodb-table" {
write_capacity = 1
hash_key = "Path"
range_key = "Key"
attribute = [
{
name = "Path"
type = "S"
},
{
name = "Key"
type = "S"
}
]
tags {
attribute {
name = "Path"
type = "S"
}
attribute {
name = "Key"
type = "S"
}
tags = {
Name = "vault-dynamodb-table"
Environment = "prod"
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment