You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add configurable wait before zip deploy for SCM settings propagation (#265)
* feat: add configurable wait before zip deploy for SCM settings propagation
Add a time_sleep resource between app settings/connection strings configuration
and zip deploy to allow the SCM site to pick up settings like
SCM_DO_BUILD_DURING_DEPLOYMENT before the deploy triggers.
- Add hashicorp/time provider
- Add zip_deploy_wait_duration variable (default 60s)
- Add time_sleep.wait_for_app_settings resource before zip deploy
* docs: update README for zip_deploy_wait_duration
Description: The duration to wait after applying app settings and connection strings before triggering zip deploy. This allows the SCM site to pick up settings like `SCM_DO_BUILD_DURING_DEPLOYMENT` before the deploy starts.
description="The path to the zip file to deploy to the App Service."
2084
2084
}
2085
+
2086
+
variable"zip_deploy_wait_duration" {
2087
+
type=string
2088
+
default="60s"
2089
+
description="The duration to wait after applying app settings and connection strings before triggering zip deploy. This allows the SCM site to pick up settings like `SCM_DO_BUILD_DURING_DEPLOYMENT` before the deploy starts."
0 commit comments