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
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
Service Used
azurerm_eventgrid_event_subscription
API Versions Used
2022-06-15
Description
When trying to create a new azurerm_eventgrid_event_subscription with a manual webhook with manual webhook validation, Terraform is failing after around on minute with the following error :
polling after CreateOrUpdate: result.Status was nil/empty - op.Status was "AwaitingManualAction" / op.Properties.ProvisioningState was ""
While the webhook has a 10 minute validation timeout for manual validation.
Is there an existing issue for this?
Community Note
Service Used
azurerm_eventgrid_event_subscription
API Versions Used
2022-06-15
Description
When trying to create a new azurerm_eventgrid_event_subscription with a manual webhook with manual webhook validation, Terraform is failing after around on minute with the following error :
polling after CreateOrUpdate: result.Status was nil/empty - op.Status was "AwaitingManualAction" / op.Properties.ProvisioningState was ""
While the webhook has a 10 minute validation timeout for manual validation.
TF code used for testing:
resource "azurerm_eventgrid_event_subscription" "eventgrid_event_pre_subscription" {
scope = azurerm_maintenance_configuration.maintenance_config.id
name = "${azurerm_maintenance_configuration.maintenance_config.name}-pre"
included_event_types = ["Microsoft.Maintenance.PreMaintenanceEvent"]
webhook_endpoint {
url = "https://eoacqvca9pmb9ks.m.pipedream.net"
max_events_per_batch = 1
preferred_batch_size_in_kilobytes = 64
}
labels = []
retry_policy {
event_time_to_live = 1440
max_delivery_attempts = 3
}
}
hashicorp/azurerm provider version: 3.100.0
From what I understand so far it seems
AwaitingManualAction
needs to be added in here:go-azure-sdk/sdk/client/resourcemanager/poller_lro_statuses.go
Line 8 in 9659c76
References
No response
The text was updated successfully, but these errors were encountered: