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: CONTRIBUTING.md
+14-2
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,8 @@ If acceptance tests fail and leave some undeleted resources on the Retool instan
35
35
make test-acc-sweep
36
36
```
37
37
38
+
If you want to see more detailed Terraform logs, add `TF_LOG=info` to your command.
39
+
38
40
## Recording and replaying HTTP requests for acceptance tests
39
41
It's hard to run acceptance tests on CI hitting a live Retool instance. Instead, we have a way to record and store HTTP responses during acceptance test run, then use canned responses to avoid hitting Retool instance.
40
42
Recorded responses are stored in `test/data/recordings/<test name>.yaml` files.
@@ -49,8 +51,18 @@ To run acceptance test using pre-recorded responses, do
49
51
FILTER=TestAccFoo make test-acc-replay
50
52
```
51
53
52
-
53
-
See `internal/acctest` for implementation details. The implementation was mostly copied from Auth0's Terraform provider: https://github.com/auth0/terraform-provider-auth0/tree/main/internal/acctest
54
+
See `internal/acctest` for implementation details. The implementation was mostly copied from Auth0's Terraform provider: https://github.com/auth0/terraform-provider-auth0/tree/main/internal/acctest .
55
+
Note that you may run into rate-limiting when recording new tests. See https://registry.terraform.io/providers/tryretool/retool/latest/docs#rate-limiting for more details on how to increase the limits or disable rate limiting completely on your Retool instance.
54
56
55
57
# Documentation
56
58
Run `go generate` in the root of this repository to generate provider docs. See https://developer.hashicorp.com/terraform/tutorials/providers-plugin-framework/providers-plugin-framework-documentation-generation for more details on how to add new examples.
59
+
60
+
# Publishing new version to Terraform Repository
61
+
Go to https://github.com/tryretool/terraform-provider-retool/releases, click "Draft a new release". Create new tag that follows `v<major version>.<minor version>.<patch version>` format. Most of the fixes should only increment the patch version.
62
+
Minor version increments should be tied to Retool on-prem stable releases, since they are likely to rely on new API functionality not available in the previous versions. Major version increment should be reserved for major backward-incompatible changes.
63
+
Fill out release description and publish it. That'll kick off Github workflow defined [here](https://github.com/tryretool/terraform-provider-retool/blob/d8832910a0cb3cc719387b07caa788d573f6a24c/.github/workflows/release.yaml).
64
+
New version should show up on Terraform Repository in 10-15 minutes.
65
+
66
+
# Update Retool CLI
67
+
Retool CLI has a `terraform` command that generates Terraform configuration from existing Retool org: https://github.com/tryretool/retool-cli/blob/master/src/commands/terraform.ts.
68
+
If you added a new resource or updated an existing one, you should update Retool CLI as well, so that your changes are reflected in auto-generated configuration.
0 commit comments