Feat: Adds cognito and memory

This commit is contained in:
2025-10-22 11:24:38 -03:00
parent f71b054dca
commit d37d5132eb
45 changed files with 3983 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import pulumi
import pulumi_aws as aws
import conf as config
basic_dynamodb_table = aws.dynamodb.Table(config.project_name,
name="assistente-produtos-servicos-memoria",
billing_mode="PAY_PER_REQUEST",
hash_key="UserId",
range_key="Timestamp",
attributes=[
{
"name": "UserId",
"type": "S",
},
{
"name": "Timestamp",
"type": "N",
}
])