hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.73k stars 9.09k forks source link

[New Resource]: automated_sensitive_data_discovery #34938

Open YukiOnodera opened 8 months ago

YukiOnodera commented 8 months ago

Description

Amazon Macie is a data security service that discovers sensitive data by using machine learning and pattern matching, provides visibility into data security risks, and enables automated protection against those risks.

There is already some resources for Amazon Macie but Automated sensitive data discovery is still not provided. It would be helpful to add it as a new resource in order to enable it and also as a data source to get the current status.

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

Potential Terraform Configuration

resource "aws_macie2_automated_sensitive_data_discovery" "example" {
  enable   = true
  excluded_s3_buckets = []
  managed_data_identifiers = []
  custom_data_identifiers = []
  allow_lists = []
}

data "aws_macie2_automated_sensitive_data_discovery" "example" {}

References

AWS User Guide: https://docs.aws.amazon.com/macie/latest/user/what-is-macie.html AWS API Reference: https://docs.aws.amazon.com/macie/latest/APIReference/automated-discovery-configuration.html

Would you like to implement a fix?

No

github-actions[bot] commented 8 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue