-
Notifications
You must be signed in to change notification settings - Fork 0
create dynamodb #220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
create dynamodb #220
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
resource "aws_dynamodb_table" "dyno_table"{ | ||
name = "Dyno" | ||
hash_key = "clientId" | ||
range_key = "fuzzId" | ||
attribute { | ||
name = "clientId" | ||
type = "S" | ||
} | ||
attribute { | ||
name = "fuzzId" | ||
type = "S" | ||
} | ||
} | ||
Comment on lines
+1
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tfsec check aws-dynamodb-enable-recovery failed. Description: Point-in-time recovery is not enabled. Severity: MEDIUM For more information, see:
Comment on lines
+1
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tfsec check aws-dynamodb-table-customer-key failed. Description: Cluster encryption does not use a customer-managed KMS key. Severity: LOW For more information, see: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tfsec check aws-dynamodb-enable-at-rest-encryption failed.
Description: Cluster encryption is not enabled.
Severity: HIGH
For more information, see: