From b33db797590dbd86493d76d5244faceb00125166 Mon Sep 17 00:00:00 2001 From: Marc Gavanier Date: Mon, 11 Sep 2023 15:36:43 +0200 Subject: [PATCH] feat: add s3 bucket to import data to LieuxInclusionNumerique dynamo table --- dynamo.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dynamo.tf b/dynamo.tf index 027678e..92bf43c 100644 --- a/dynamo.tf +++ b/dynamo.tf @@ -1,3 +1,9 @@ +resource "aws_s3_bucket" "lieux_inclusion_numerique_table_import" { + bucket = "${replace(local.product_information.context.project, "_", "-")}-dynamo-table-import" + force_destroy = true + tags = local.tags +} + resource "aws_dynamodb_table" "lieux_inclusion_numerique_table" { name = "LieuxInclusionNumerique" billing_mode = "PROVISIONED"