Skip to content

Commit 3169773

Browse files
author
Dzmitry Kishylau
authored
[chore] Improve CONTRIBUTING docs (#37)
1 parent 7ae15a0 commit 3169773

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

CONTRIBUTING.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ If acceptance tests fail and leave some undeleted resources on the Retool instan
3535
make test-acc-sweep
3636
```
3737

38+
If you want to see more detailed Terraform logs, add `TF_LOG=info` to your command.
39+
3840
## Recording and replaying HTTP requests for acceptance tests
3941
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.
4042
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
4951
FILTER=TestAccFoo make test-acc-replay
5052
```
5153

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.
5456

5557
# Documentation
5658
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

Comments
 (0)