Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3399699
D11150.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
713 B
Referenced Files
None
Subscribers
None
D11150.diff
View Options
diff --git a/services/terraform/modules/shared/dynamodb.tf b/services/terraform/modules/shared/dynamodb.tf
--- a/services/terraform/modules/shared/dynamodb.tf
+++ b/services/terraform/modules/shared/dynamodb.tf
@@ -195,6 +195,22 @@
}
}
+resource "aws_dynamodb_table" "identity-workflows-in-progress" {
+ name = "identity-workflows-in-progress"
+ hash_key = "id"
+ billing_mode = "PAY_PER_REQUEST"
+
+ attribute {
+ name = "id"
+ type = "S"
+ }
+
+ ttl {
+ attribute_name = "expirationTimeUnix"
+ enabled = true
+ }
+}
+
resource "aws_dynamodb_table" "identity-reserved-usernames" {
name = "identity-reserved-usernames"
hash_key = "username"
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Dec 3, 4:25 AM (19 h, 35 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2610203
Default Alt Text
D11150.diff (713 B)
Attached To
Mode
D11150: [terraform] ddb table for identity workflows in progress
Attached
Detach File
Event Timeline
Log In to Comment