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.61k stars 8.99k forks source link

[Enhancement]: Implement "description" support for #36970

Open EugenKon opened 2 months ago

EugenKon commented 2 months ago

Description

Implement field description for aws_ec2_client_vpn_network_association resource

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

Potential Terraform Configuration

resource "aws_ec2_client_vpn_network_association" "client_vpn_network_association" {
  client_vpn_endpoint_id = aws_ec2_client_vpn_endpoint.client_vpn_endpoint.id
  subnet_id              = var.subnet_id
  description            = "My description"
}

References

image

Would you like to implement a fix?

None

github-actions[bot] commented 2 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

acwwat commented 2 months ago

I looked at this last year when I had to work with building IaC for AWS Client VPN. It seems that the AWS API AssociateClientVpnTargetNetwork lacks the ability to set descriptions, and If I recalled not seeing an option to set it in the AWS Management Console either. It's best to open an AWS Support case to inquire further since it is seemingly an upstream issue.