Open
Description
Does this documentation exist?
- This is new documentation #386
- This is an enhancement to existing documentation
Where would you expect to find this documentation?
- On terraform.io
- In the GoDoc for this module
- In this repo as a markdown file
- Somewhere else - in the Hashicups example
Description
I would like to follow an idiomatic example of Sweepers, so I can implement them for a provider that is based on the terraform-plugin-framework
package.
I'm fairly new to Go and creating Terraform providers; I have tried to follow the Terraform docs, but my sweepers do not run. (No need for you to debug my code, just trying to give some context.)
- The documentation refers to a Makefile, but there is no explanation for what should be in that Makefile
- Ideally document how to sweep without a Makefile also
- Sweeper seems to rely on some environment variables, (I'm assuming
SWEEP
/SWEEP_ARGS
/SWEEP_DIR
based on unofficial GitHub code?) but these are not documented - Not clear what the intended use is of the
region
argument forSweeperFunc
- The documentation refers to
TestMain
- I'm not sure if the name is important, or it could be replaced withTestWhatever
- Ideally, also include Sweepers in the Hashicups example, because there is very little code for Terraform Framework that can be used as a reference for Sweepers:
- Compare 20k+ result count for mostly SDK v2: https://github.com/search?q=resource.AddTestSweepers&type=code
- and ~600 results for TF Framework - https://github.com/search?q=resource.AddTestSweepers+NOT+sdk&type=code
References
N/A