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.82k stars 9.17k forks source link

[Enhancement]: aws_rds_integration lacks the DataFilter parameter #39762

Open davidsickmiller opened 2 weeks ago

davidsickmiller commented 2 weeks ago

Description

One of the Zero-ETL integration parameters is DataFilter. It allows databases and tables to included or excluded from the integration.

I believe the provider doesn't currently allow this parameter to be configured, and I am kindly requesting this additional feature.

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

aws_rds_integration

Potential Terraform Configuration

resource "aws_rds_integration" "example" {
  integration_name = "example"
  source_arn       = aws_rds_cluster.example.arn
  target_arn       = aws_redshift_cluster.example.arn
  kms_key_id       = ""
  tags             = {}
  data_filter      = "mydb.mytable, mydb.mytable2"
}

References

https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateIntegration.html

Would you like to implement a fix?

No

github-actions[bot] commented 2 weeks ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

kty1965 commented 2 weeks ago

I need it!