Skip to content

Commit

Permalink
NOBUG: Update attribute (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
marklise authored Oct 30, 2023
1 parent fe74826 commit fb55174
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion terraform/src/db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "aws_dynamodb_table" "ar_table_name_cache" {
}

attribute {
name = "orcs"
name = "pk"
type = "S"
}
}
Expand Down Expand Up @@ -41,6 +41,11 @@ resource "aws_dynamodb_table" "ar_table" {
type = "S"
}

attribute {
name = "orcs"
type = "S"
}

global_secondary_index {
name = "orcs-index"
hash_key = "orcs"
Expand Down

0 comments on commit fb55174

Please sign in to comment.