From 7372400592b0174c39589c7cdee464e83b12675c Mon Sep 17 00:00:00 2001 From: Samori Gorse Date: Fri, 10 Dec 2021 22:33:12 +0000 Subject: [PATCH] backport of commit c3aac0fc37453cef768c5aa55018bd82fb8eefe2 --- .../docs/configuration/storage/dynamodb.mdx | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/website/content/docs/configuration/storage/dynamodb.mdx b/website/content/docs/configuration/storage/dynamodb.mdx index c5d3dffc899a..90d6dadf90cc 100644 --- a/website/content/docs/configuration/storage/dynamodb.mdx +++ b/website/content/docs/configuration/storage/dynamodb.mdx @@ -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" }