-
Notifications
You must be signed in to change notification settings - Fork 91
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
custom-phone-provider
action trigger does not perform real update
#1188
Comments
@Will956 Hello! The supported_triggers {
id = "custom-phone-provider"
version = "v1"
} Please look out any additional actions that might exist on your tenant. Consider deleting all those actions and recreate your action and phone provider via terraform. Note: You'd not need to use Also, just want to let you know that we are adding validations to ensure only one action exists for Let me know if this fixes your issue. |
Hi,
Thanks, I'm removing that. Unfortunately, I tried to run I guess I have created that new action directly in my tenant without infra as code and now I can't properly delete it? Do you know how to delete it? |
@Will956 I understand your state of your tenant. Set the bindings to empty slice:
You'd be now able to delete all the actions which has supported triggers as resource "auth0_phone_provider" "custom_phone_provider" {
depends_on = [auth0_action.send_sms]
name = "custom"
disabled = false
credentials {}
configuration {
delivery_methods = ["text"]
}
}
resource "auth0_action" "send_sms" {
name = "Custom phone provider"
runtime = "node22"
deploy = true
code = "console.log('here')"
supported_triggers {
id = "custom-phone-provider"
version = "v1"
}
} Let me know how it goes. :) |
Nice, the binding was already empty. But I managed to find my action with the Management API and delete it as well within the API. The Auth0 Mangement console does not display it in the UI. It works, thanks for your help! |
Checklist
Description
Hello,
I've recently used the new
custom-phone-provider
trigger action to update my action, but despite the apply working well, my changes were not reflected on my Auth0 dashboard.Sounds like nothing was taken into account.
Expectation
The new
custom-phone-provider
action should be reflect on my tenant.Reproduction
Auth0 Terraform Provider version
1.14.0
Terraform version
1.9.8
The text was updated successfully, but these errors were encountered: