Thank you for wanting to contribute to this Terraform provider!
- Raise an issue first to discuss your new feature, if it's a big one.
- Fork and clone this repo.
- Make your changes.
- Run
go mod download
, thengo build .
in the root directory. This should install all dependencies and give aterraform-provider-improvmx
binary. - Configure your local Terraform to use the development provider rather than the released version on the Registry. Make a
~/.terraformrc
file pointing to the filepath of your dev binary:provider_installation { dev_overrides { "issyl0/improvmx" = "/full/path/to/terraform-provider-improvmx/directory" } direct {} }
- Write some Terraform config for your new feature, then iterate against your ImprovMX account until it does what you intend.
- Submit a PR. Thank you! 🙇