-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
[Enhancement]: aws_guardduty_detector RDS support #28229
Comments
Community NoteVoting for Prioritization
Volunteering to Work on This Issue
|
Please, same enhancement for |
Does this need to be out of preview prior to being supported? |
Bumped into this now too. Is the issue that there is no way to enable it via the API like the others? And as part of the GuardDuty docs mentioned above, the RDS page only has a console method to enable it, the others have API examples. |
At the time of writing, this option is (still) missing from the API and is not possible to implement: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_DataSourceConfigurations.html |
Documentation for the MemberFeaturesConfiguration is now updated for RDS_LOGIN_EVENTS, strangely enough the documentation for DataSourceConfigurations is still missing this? Does this mean we will see the Terraform GuardDuty Detector support this soon? |
The use of |
any plans for adding RDS protection and EKS runtime monitoring? |
Bump. Would be great to get the EKS runtime monitoring flags for guardduty As otherwise the EKS guardduty addon resource will fail to create in terraform if you don't already have it enabled. |
Bump please now that GuardDuty RDS is officially launched. |
You will be able to use the upcoming resource "aws_guardduty_detector" "example" {
enable = true
}
resource "aws_guardduty_detector_feature" "example" {
detector_id = aws_guardduty_detector.example.id
name = "RDS_LOGIN_EVENTS"
status = "ENABLED"
} |
This functionality has been released in v5.20.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Amazon GuardDuty RDS protection is now in feature preview but the Terraform resource does not yet support it.
It would be great if it was supported by the Terraform resource so it could be easily enabled for those using GuardDuty and the most popular IaaC tool.
Affected Resource(s) and/or Data Source(s)
Potential Terraform Configuration
References
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/guardduty_detector
https://aws.amazon.com/about-aws/whats-new/2022/11/amazon-guardduty-rds-protection-preview/
https://docs.aws.amazon.com/guardduty/latest/ug/rds-protection.html
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: