You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/index.md
+25
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@ better alternative.
63
63
64
64
-`access_token` (String, Sensitive) The access token for the Retool API
65
65
-`host` (String) The host of the Retool instance, organization or Space, e.g. 'example.retool.com'
66
+
-`requests_per_minute` (Number) The number of requests per minute to allow to the Retool API. Set to 45 by default. Set to -1 to disable rate limiting.
66
67
-`scheme` (String) The scheme of the Retool instance, e.g. 'https'
67
68
68
69
## Environment Variables
@@ -112,3 +113,27 @@ RETOOL_SCHEME="https" \
112
113
RETOOL_ACCESS_TOKEN="your-access-token" \
113
114
terraform plan
114
115
```
116
+
117
+
## Rate limiting
118
+
Retool API has rate limits. In order to avoid hitting the rate limits, Retool Terraform provider is configured to limit requests to the API to 45 requests per minute.
119
+
This might be too slow for complex Retool configurations with a lot of folders and permission groups. To increase the rate limit, you can do the following:
120
+
121
+
- Disable rate limiting on your self-hosted Retool instance by setting `DISABLE_RATE_LIMIT` environment variable to `true`.
122
+
123
+
- Increase the rate limit on your self-hosted Retool instance by setting `API_CALLS_PER_MIN` environment variable higher than its default value of 300.
124
+
125
+
Once you've increased the rate limit, you can increase the `requests_per_minute` parameter in the provider configuration.
126
+
127
+
```terraform
128
+
provider "retool" {
129
+
requests_per_minute = 100
130
+
}
131
+
```
132
+
133
+
Or you can disable rate limiting in the provider completely by setting `requests_per_minute` to `-1`.
Retool API has rate limits. In order to avoid hitting the rate limits, Retool Terraform provider is configured to limit requests to the API to 45 requests per minute.
39
+
This might be too slow for complex Retool configurations with a lot of folders and permission groups. To increase the rate limit, you can do the following:
40
+
41
+
- Disable rate limiting on your self-hosted Retool instance by setting `DISABLE_RATE_LIMIT` environment variable to `true`.
42
+
43
+
- Increase the rate limit on your self-hosted Retool instance by setting `API_CALLS_PER_MIN` environment variable higher than its default value of 300.
44
+
45
+
Once you've increased the rate limit, you can increase the `requests_per_minute` parameter in the provider configuration.
0 commit comments