Quick question about agent scripting deployment failing hard.
trying to push a new script with a single text-to-speech node via tf provider v1.65.2.
region: au-1
command:
terraform apply
error:
Error: creating agent script node: 500 Internal Server Error
Status Code: 500
Response Body: {“errors”:[{“code”:“internal_server_error”,“message”:“An internal server error occurred”,“description”:“The request could not be processed due to an internal server error”}]}
the json payload looks valid.
code snippet:
resource “genesyscloud_script” “main” {
name = “test_script”
nodes {
id = “start”
type = “speech”
position { x = 0 y = 0 }
properties = jsonencode({
text = “hello world”
})
}
}
postman works fine with same payload.
cli works fine.
terraform always 500 on the node creation step.
is this a known bug with the provider or am i missing something in the node structure?
logs show no specific details.
help appreciated.