Data Action timeout 3s limit exceeded with 5s response

Stuck on a Data Action timeout error. The action takes 5s to complete but the default limit is 3s. How do I increase the timeout value in the configuration?

{
 "timeout": 3,
 "url": "https://example.com/api/data"
}

Have you tried defining the timeout via a Terraform variable instead of hardcoding it?

  1. Create a timeout variable with a default of 3.
  2. Reference it in your genesyscloud_integration_action resource.

This approach ensures you can adjust limits without modifying the module source code directly.