-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Open
Labels
enhancementRequests to existing resources that expand the functionality or scope.Requests to existing resources that expand the functionality or scope.service/logsIssues and PRs that pertain to the logs service.Issues and PRs that pertain to the logs service.
Description
Description
The aws_cloudwatch_log_delivery_destination resource currently doesn't support creating X-Ray trace delivery destinations. The AWS API supports XRAY as a valid DeliveryDestinationType, but the provider marks delivery_destination_type as computed-only and requires delivery_destination_configuration to be set. X-Ray destinations work differently - they don't require a destination configuration block.
Affected Resource(s)
aws_cloudwatch_log_delivery_destination
Potential Terraform Configuration
resource "aws_cloudwatch_log_delivery_destination" "xray" {
name = "xray-traces"
delivery_destination_type = "XRAY"
}References
- AWS SDK Go v2: DeliveryDestinationType - includes
XRAYas a valid type - AWS API: PutDeliveryDestination
Metadata
Metadata
Assignees
Labels
enhancementRequests to existing resources that expand the functionality or scope.Requests to existing resources that expand the functionality or scope.service/logsIssues and PRs that pertain to the logs service.Issues and PRs that pertain to the logs service.