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]: aws_apigatewayv2_stage cycles on logging_level #39477

Open
t0yv0 opened this issue Sep 24, 2024 · 1 comment
Open

[Bug]: aws_apigatewayv2_stage cycles on logging_level #39477

t0yv0 opened this issue Sep 24, 2024 · 1 comment
Labels
bug Addresses a defect in current functionality. service/apigatewayv2 Issues and PRs that pertain to the apigatewayv2 service.

Comments

@t0yv0
Copy link
Contributor

t0yv0 commented Sep 24, 2024

Terraform Core Version

1.8.3

AWS Provider Version

5.68.0

Affected Resource(s)

  • aws_apigatewayv2_stage

Expected Behavior

Resource reaches steady state.

Actual Behavior

Resource cycles.

Relevant Error/Panic Output Snippet

N/A

Terraform Configuration Files

resource "aws_apigatewayv2_api" "example" {
  name = "exampleapi1"
  protocol_type = "HTTP"
}

resource "aws_apigatewayv2_stage" "stage" {
  name = "exampleapistage1"
  api_id = "${aws_apigatewayv2_api.example.id}"
  default_route_settings {
    logging_level = "ERROR"
  }
}

Steps to Reproduce

Repeated terraform apply

Debug Output

  # aws_apigatewayv2_stage.stage will be updated in-place
  ~ resource "aws_apigatewayv2_stage" "stage" {
        id                    = "exampleapistage1"
        name                  = "exampleapistage1"
        tags                  = {}
        # (10 unchanged attributes hidden)

      ~ default_route_settings {
          + logging_level            = "ERROR"
            # (4 unchanged attributes hidden)
        }
    }

Plan: 0 to add, 1 to change, 0 to destroy.

Panic Output

N/A

Important Factoids

N/A

References

N/A

Would you like to implement a fix?

No

@t0yv0 t0yv0 added the bug Addresses a defect in current functionality. label Sep 24, 2024
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 service/apigatewayv2 Issues and PRs that pertain to the apigatewayv2 service. needs-triage Waiting for first response or review from a maintainer. labels Sep 24, 2024
@breathingdust breathingdust removed the needs-triage Waiting for first response or review from a maintainer. label Sep 25, 2024
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/apigatewayv2 Issues and PRs that pertain to the apigatewayv2 service.
Projects
None yet
Development

No branches or pull requests

2 participants