-
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
Conversation
resource "aws_dynamodb_table" "dyno_table"{ | ||
name = "Dyno" | ||
hash_key = "clientId" | ||
range_key = "fuzzId" | ||
attribute { | ||
name = "clientId" | ||
type = "S" | ||
} | ||
attribute { | ||
name = "fuzzId" | ||
type = "S" | ||
} | ||
} No newline at end of file |
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:
resource "aws_dynamodb_table" "dyno_table"{ | ||
name = "Dyno" | ||
hash_key = "clientId" | ||
range_key = "fuzzId" | ||
attribute { | ||
name = "clientId" | ||
type = "S" | ||
} | ||
attribute { | ||
name = "fuzzId" | ||
type = "S" | ||
} | ||
} No newline at end of file |
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-recovery failed.
Description: Point-in-time recovery is not enabled.
Severity: MEDIUM
For more information, see:
resource "aws_dynamodb_table" "dyno_table"{ | ||
name = "Dyno" | ||
hash_key = "clientId" | ||
range_key = "fuzzId" | ||
attribute { | ||
name = "clientId" | ||
type = "S" | ||
} | ||
attribute { | ||
name = "fuzzId" | ||
type = "S" | ||
} | ||
} No newline at end of file |
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-table-customer-key failed.
Description: Cluster encryption does not use a customer-managed KMS key.
Severity: LOW
For more information, see:
No description provided.