Migrates secrets to prisma

This commit is contained in:
2024-12-18 19:31:43 -05:00
parent a7fdedd310
commit 22da8d73d3
13 changed files with 121 additions and 125 deletions

View File

@@ -24,6 +24,19 @@ model Audit {
response String?
}
model Secret {
versionId String @id
name String
description String?
secretString String
accountId String
region String
createdAt DateTime @default(now())
deletionDate DateTime?
@@index([name])
}
model SnsTopic {
name String @id
accountId String