Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Event Bridge Pipe Retry Count=0 is not being reflected #33019

Open
gurudatta-carbon opened this issue Aug 15, 2023 · 1 comment
Open
Labels
bug Addresses a defect in current functionality. service/pipes Issues and PRs that pertain to the pipes service.

Comments

@gurudatta-carbon
Copy link

Terraform Core Version

1.4.6

AWS Provider Version

5.9.0

Affected Resource(s)

  • aws_pipes_pipe

Expected Behavior

Actual Behavior

  • it should set in aws pipe settings for maximum_retry_attempts=0, for create/ update.
  • for update, it should allow to update with any allowed value.

Relevant Error/Panic Output Snippet

- for create, no error if maximum_retry_attempts=0.
- for updating maximum_retry_attempts, same issue as https://github.com/hashicorp/terraform-provider-aws/issues/32423

Terraform Configuration Files

resource "aws_pipes_pipe" "patient-events-stream-pipe" {
  name     = "name"
  role_arn = var.role_arn
  source = var.source_kinesis_stream_arn
  target = var.api_destination_arn
  source_parameters {
    kinesis_stream_parameters {
      batch_size        = 1
      starting_position = "TRIM_HORIZON"
      maximum_record_age_in_seconds = 60
      maximum_retry_attempts        = 0
      dead_letter_config {
        arn = var.sqs_dlq_arn
      }
    }
  }

  target_parameters {
    input_template = <<EOF
       $.data
      EOF
  }
}

Steps to Reproduce

Debug Output

No response

Panic Output

No response

Important Factoids

No response

References

No response

Would you like to implement a fix?

None

@gurudatta-carbon gurudatta-carbon added the bug Addresses a defect in current functionality. label Aug 15, 2023
@github-actions
Copy link

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

@github-actions github-actions bot added the service/pipes Issues and PRs that pertain to the pipes service. label Aug 15, 2023
@terraform-aws-provider terraform-aws-provider bot added the needs-triage Waiting for first response or review from a maintainer. label Aug 15, 2023
@justinretzolk justinretzolk added bug Addresses a defect in current functionality. and removed bug Addresses a defect in current functionality. needs-triage Waiting for first response or review from a maintainer. labels Aug 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Addresses a defect in current functionality. service/pipes Issues and PRs that pertain to the pipes service.
Projects
None yet
Development

No branches or pull requests

2 participants