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.71k stars 9.07k forks source link

[New Resource]: Add support to create/update/delete custom domain association for Amazon Redshift #35998

Open zvymazal opened 6 months ago

zvymazal commented 6 months ago

Description

Add support to create/update/delete custom domain name association for Amazon Redshift.

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

This would likely be a new resource.

Potential Terraform Configuration

resource "aws_redshift_custom_domain_association" "example" {
  cluster_identifier = "example"
  custom_domain_name = "redshift.example.com"
  custom_domain_certificate_arn = "arn:aws:acm:region:account-id:certificate/certificate-id"
}

References

Would you like to implement a fix?

None

github-actions[bot] commented 6 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

zvymazal commented 3 months ago

@marcinbelczewski Any chance you would like to implement this one as well?