Skip to content
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

[New]: The aws_glue_security_configuration resource should support encrypting Glue Data Quality . #39821

Open
vaquarkhan opened this issue Oct 21, 2024 · 3 comments
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/glue Issues and PRs that pertain to the glue service.

Comments

@vaquarkhan
Copy link

vaquarkhan commented Oct 21, 2024

Description

Currently aws_glue_security_configuration is not have support to add encryption for Glue data quality . if glue data quality not encrypted then Glue security configuration show disabled even you encrypt S3, KMS and CLoudwatch . which flag as security findings . looking to add support so via terraform we can add glue data quality encryption
Document:
https://registry.terraform.io/providers/hashicorp/aws/4.1.0/docs/resources/glue_security_configuration
Images
dq1
dq2
dq3

Requested Resource(s) and/or Data Source(s)

aws_glue_security_configuration data quality encryption

Potential Terraform Configuration

resource "aws_glue_security_configuration" "example" {
  name = "example"

  encryption_configuration {
    cloudwatch_encryption {
      cloudwatch_encryption_mode = "DISABLED"
    }

    job_bookmarks_encryption {
      job_bookmarks_encryption_mode = "DISABLED"
    }

    s3_encryption {
      kms_key_arn        = data.aws_kms_key.example.arn
      s3_encryption_mode = "SSE-KMS"
    }
    # Add new feature
    data_quality_encryption {
      kms_key_arn        = data.aws_kms_key.example.arn
      data_quality_encryption_mode = "SSE-KMS"
    }
  }
}

References

Would you like to implement a fix?

Yes

Copy link

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

@github-actions github-actions bot added service/glue Issues and PRs that pertain to the glue service. needs-triage Waiting for first response or review from a maintainer. labels Oct 21, 2024
@justinretzolk justinretzolk added enhancement Requests to existing resources that expand the functionality or scope. and removed needs-triage Waiting for first response or review from a maintainer. labels Oct 21, 2024
@vaquarkhan vaquarkhan changed the title [New]: aws_glue_security_configuration need to add support for Glue dataquality encryption [New]: The aws_glue_security_configuration resource should support encrypting Glue Data Quality encryption. Oct 21, 2024
@vaquarkhan vaquarkhan changed the title [New]: The aws_glue_security_configuration resource should support encrypting Glue Data Quality encryption. [New]: The aws_glue_security_configuration resource should support encrypting Glue Data Quality . Oct 21, 2024
@vaquarkhan
Copy link
Author

do we need any process or i can start work on this enhancement ?

@vaquarkhan
Copy link
Author

vaquarkhan commented Nov 16, 2024

Code changes are done , we have following blocker for release this enhancement - aws/aws-sdk-go-v2#2893

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/glue Issues and PRs that pertain to the glue service.
Projects
None yet
Development

No branches or pull requests

2 participants