Hello,
I have this Action defined in Terraform:
resource "auth0_action" "post-login" {
name = "Post-Login"
deploy = true
runtime = "node16"
code = file("${path.module}/auth0-actions/post-login.js")
supported_triggers {
id = "post-login"
version = "v3"
}
}
After applying the changes. I could see the action in Management Console → Actions → Library.
But I don’t see it attached to the Login flow in Management Console → Actions → Flows → Login!
How can I configure terraform action to automatically attach it to the flow?!