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]: Add description attribute to aws_cloudwatch_event_bus #39900

Open centrica-colin opened 5 days ago

centrica-colin commented 5 days ago

Description

AWS API allows you to create / update a description to an event bus. This is currently not supported by the Terraform resource or data source.

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

aws_cloudwatch_event_bus resource and data source

Potential Terraform Configuration

resource "aws_cloudwatch_event_bus" "messenger" {
  name        = "chat-messages"
  description = "Event bus for messenger chat messages"
}

References

https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_CreateEventBus.html https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_DescribeEventBus.html https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_UpdateEventBus.html

Would you like to implement a fix?

None

github-actions[bot] commented 5 days ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue