File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3
3
aws dynamodb put-item \
4
4
--table-name items \
5
5
--item ' {
6
- "id": {"S": "' $( uuidgen 2> /dev/null || echo " default-id- 1" ) ' "},
6
+ "id": {"S": "' $( uuidgen 2> /dev/null || echo " 1" ) ' "},
7
7
"name": {"S": "Premium Service Package"},
8
8
"description": {"S": "A comprehensive package offering premium services including dedicated support and priority access."},
9
9
"createdAt": {"S": "' $( date -u +" %Y-%m-%dT%H:%M:%SZ" ) ' "}
@@ -13,7 +13,7 @@ aws dynamodb put-item \
13
13
aws dynamodb put-item \
14
14
--table-name items \
15
15
--item ' {
16
- "id": {"S": "' $( uuidgen 2> /dev/null || echo " default-id- 2" ) ' "},
16
+ "id": {"S": "' $( uuidgen 2> /dev/null || echo " 2" ) ' "},
17
17
"name": {"S": "Standard Service Package"},
18
18
"description": {"S": "A standard package providing essential services with regular support."},
19
19
"createdAt": {"S": "' $( date -u +" %Y-%m-%dT%H:%M:%SZ" ) ' "}
You can’t perform that action at this time.
0 commit comments