Skip to content

Commit 3778a57

Browse files
[PRMP-1444] amend attributes and indexes
1 parent c8f4d86 commit 3778a57

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

infrastructure/dynamo_db.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ module "user_restriction_table" {
607607
type = "S"
608608
},
609609
{
610-
name = "RestrictedSmartCardId"
610+
name = "RestrictedSmartCard"
611611
type = "S"
612612
},
613613
{
@@ -623,15 +623,15 @@ module "user_restriction_table" {
623623
type = "N"
624624
},
625625
{
626-
name = "CreatorSmartCardId"
626+
name = "CreatorSmartCard"
627627
type = "S"
628628
}
629629
]
630630

631631
global_secondary_indexes = [
632632
{
633-
name = "RestrictedSmartCardIdIndex"
634-
hash_key = "RestrictedSmartCardId"
633+
name = "RestrictedSmartCardIndex"
634+
hash_key = "RestrictedSmartCard"
635635
range_key = "Created"
636636
projection_type = "ALL"
637637
},
@@ -648,14 +648,14 @@ module "user_restriction_table" {
648648
projection_type = "ALL"
649649
},
650650
{
651-
name = "CustodianBySmartCardIdIndex"
651+
name = "CustodianBySmartCardIndex"
652652
hash_key = "Custodian"
653-
range_key = "RestrictedSmartCardId"
653+
range_key = "RestrictedSmartCard"
654654
projection_type = "ALL"
655655
},
656656
{
657657
name = "CreatorIndex"
658-
hash_key = "CreatorSmartCardId"
658+
hash_key = "CreatorSmartCard"
659659
range_key = "Created"
660660
projection_type = "ALL"
661661
}

0 commit comments

Comments
 (0)