I want to create a Terraform configuration for DynamoDB table with multiple (> 10) attributes. And I have no need to add all attributes as an index to global_secondary_index
or local_secondary_index
. But when I run terraform plan
command I have next error:
All attributes must be indexed. Unused attributes: ...
I found the validation check in the Terraform repository in validateDynamoDbTableAttributes function.
But also as I know the best practice is that each table in DynamoDB is limited to a maximum of five global secondary indexes and five local secondary indexes
from General Guidelines for Secondary Indexes in DynamoDB.
And since I have more than 10 attributes it looks like a problem to me.
What I would like to understand why all attributes must be indexed and what to do in case if you have a big number of attributes.
Thanks!
N (number type) Strings. S (string type) Boolean.
Data Source: aws_dynamodb_table Provides information about a DynamoDB table.
The sort key of an item is also known as its range attribute. The term range attribute derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. Each primary key attribute must be a scalar (meaning that it can hold only a single value).
You do not have to define every attribute you want to use up front when creating your table.
attribute
blocks inside aws_dynamodb_table
resources are not defining which attributes you can use in your application. They are defining the key schema for the table and indexes.
For example, the following Terraform defines a table with only a hash key:
resource "aws_dynamodb_table" "test" { name = "test-table-name" read_capacity = 10 write_capacity = 10 hash_key = "Attribute1" attribute { name = "Attribute1" type = "S" } }
Every item in this table has Attribute1
, but you can create additional attributes with your application
This means that you can have your 10+ attributes as long as you don't need to define them in an AttributeDefinition
, and since you say you don't need them to be indexed, you'll be fine.
For some discussion of the confusion (attribute
is confusing and doesn't match the DynamoDB API), see this pull request.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With