Feat: Final changes to prompt
This commit is contained in:
18
infra/dynamodb/__main__.py
Normal file
18
infra/dynamodb/__main__.py
Normal 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="br-edu-ifsp-ifsp-ret-memoria-tabela-chatbot-editais-dev",
|
||||
billing_mode="PAY_PER_REQUEST",
|
||||
hash_key="UserId",
|
||||
range_key="Timestamp",
|
||||
attributes=[
|
||||
{
|
||||
"name": "UserId",
|
||||
"type": "S",
|
||||
},
|
||||
{
|
||||
"name": "Timestamp",
|
||||
"type": "N",
|
||||
}
|
||||
])
|
||||
Reference in New Issue
Block a user