Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 15cd2741 authored by Julien Nowak's avatar Julien Nowak
Browse files

Remove useless range key in ddb ingestion table

parent 9f33a953
No related branches found
No related tags found
3 merge requests!12Aited 94 : ingestion of procurement documents,!11Aited 94 ingestion of procurement documents,!10AITED-94 ingestion of procurement documents
Pipeline #38134 passed
......@@ -24,19 +24,13 @@ resource "aws_dynamodb_table" "ingestion_tasks" {
billing_mode = "PAY_PER_REQUEST"
hash_key = "resource_id"
range_key = "resource_type"
hash_key = "resource_id"
attribute {
name = "resource_id"
type = "S"
}
attribute {
name = "resource_type"
type = "S"
}
tags = var.tags
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment