Closed
Description
Checklist
- I have looked into the README and have not found a suitable solution or answer.
- I have looked into the documentation and have not found a suitable solution or answer.
- I have searched the issues and have not found a suitable solution or answer.
- I have upgraded to the latest version of this provider and the issue still persists.
- I have searched the Auth0 Community forums and have not found a suitable solution or answer.
- I agree to the terms within the Auth0 Code of Conduct.
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
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"
}
}
resource "auth0_trigger_actions" "send_sms" {
trigger = "custom-phone-provider"
actions {
id = auth0_action.send_sms.id
display_name = auth0_action.send_sms.name
}
}
Auth0 Terraform Provider version
1.14.0
Terraform version
1.9.8