-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.tf
50 lines (50 loc) · 1008 Bytes
/
items.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
resource "aws_dynamodb_table_item" "attendees_golden_data" {
table_name = aws_dynamodb_table.attendees_table.name
hash_key = aws_dynamodb_table.attendees_table.hash_key
count = 1
item = jsonencode({
"AuthCode" : {
"S" : "5F7BCD"
},
"Name" : {
"S" : "Maximillian Spillage"
},
"Email" : {
"S" : "[email protected]"
},
"Telephone" : {
"S" : "+1-800-BAMSROCKS"
},
"NumberOfKids" : {
"N" : "1"
},
"Diet" : {
"S" : "I only eat onions on Tuesdays and red lentils on Wednesdays"
},
"Financials" : {
"M" : {
"AmountToPay" : {
"N" : "75"
},
"AmountPaid" : {
"N" : "50"
},
"DatePaid" : {
"S" : "28/05/2022"
},
"AmountDue" : {
"N" : "25"
}
}
},
"StayingLate" : {
"S" : "Yes"
},
"ArrivalDay": {
"S": "Wed"
}
"NumberOfNights": {
"N": "5"
}
})
}