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

Support for initial_delay seconds for startup_probe in azurerm_container_app #24845

Closed
1 task done
wesalexander opened this issue Feb 9, 2024 · 1 comment · Fixed by #27551
Closed
1 task done

Support for initial_delay seconds for startup_probe in azurerm_container_app #24845

wesalexander opened this issue Feb 9, 2024 · 1 comment · Fixed by #27551

Comments

@wesalexander
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment and review the contribution guide to help.

Description

Apologies if I am missing it, but there appears to be no option to set the initial delay seconds for the startup probe of a container app using the azurerm_container app module in the latest version (3.91.0 as of this writing). The value defaults to 0 and is available for configuration in the liveness_probe block but not the startup_probe block.

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

azurerm_container_app

Potential Terraform Configuration

startup_probe {
  transport = "HTTP"
  path      = "/health"
  port      = 8080
  initial_delay = 5
  interval_seconds = 30
}

References

I don't believe (or could not find) any existing/past issues referencing adding this setting.

@pietersap
Copy link

I created a seperate issue with a more complete list of missing settings in the probes #24845

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment