Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions terraform/aws_only/dynamodb.tf
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
Copy link

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:

Comment on lines +1 to +13
Copy link

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-recovery failed.

Description: Point-in-time recovery is not enabled.

Severity: MEDIUM

For more information, see:

Comment on lines +1 to +13
Copy link

Choose a reason for hiding this comment

The 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: