From 4425b6a3251556692e3830299f142233ac4fb7fc Mon Sep 17 00:00:00 2001 From: Chris O <117704625+ogalo-chris@users.noreply.github.com> Date: Tue, 11 Jun 2024 14:09:30 +0300 Subject: [PATCH] added name and projection_type attribute in global_secondary_index (#10279) Co-authored-by: root --- topics/aws/exercises/web_app_lambda_dynamodb/terraform/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/topics/aws/exercises/web_app_lambda_dynamodb/terraform/main.tf b/topics/aws/exercises/web_app_lambda_dynamodb/terraform/main.tf index 391a934..8581df9 100644 --- a/topics/aws/exercises/web_app_lambda_dynamodb/terraform/main.tf +++ b/topics/aws/exercises/web_app_lambda_dynamodb/terraform/main.tf @@ -18,6 +18,7 @@ resource "aws_dynamodb_table" "users" { global_secondary_index { hash_key = - + name = + projection_type = } }