CodeBuild projects are not encrypted
Description
Encrypting your CodeBuild projects helps protect your data from unauthorized access or tampering. That way, you can ensure that only authorized users can access and modify the contents of your projects. Such action can help protect against external threats such as hackers or malware, as well as internal threats such as accidental or unauthorized access.
Fix - Buildtime
Terraform
- Resource: aws_codebuild_project
- Argument: encryption_key
go aws_s3_bucket.test.tf
resource "aws_codebuild_project" "example" {
...
+ encryption_key = "AWS_Key_Management_Service_example"
}