{"id":16882822,"url":"https://github.com/issyl0/terraform-provider-improvmx","last_synced_at":"2025-03-23T16:33:06.078Z","repository":{"id":42032388,"uuid":"380769769","full_name":"issyl0/terraform-provider-improvmx","owner":"issyl0","description":"A Terraform provider for configuring ImprovMX email forwards","archived":false,"fork":false,"pushed_at":"2025-03-13T01:18:04.000Z","size":118,"stargazers_count":7,"open_issues_count":2,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-18T22:07:26.448Z","etag":null,"topics":["emails","improvmx","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/issyl0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-27T15:08:20.000Z","updated_at":"2025-02-05T02:24:38.000Z","dependencies_parsed_at":"2024-01-10T00:46:12.347Z","dependency_job_id":"a2ad7136-f97a-419c-903b-965740485b29","html_url":"https://github.com/issyl0/terraform-provider-improvmx","commit_stats":{"total_commits":48,"total_committers":4,"mean_commits":12.0,"dds":"0.16666666666666663","last_synced_commit":"6a93e6b67c92e45ce958a282f347c015e42e09ea"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/issyl0%2Fterraform-provider-improvmx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/issyl0%2Fterraform-provider-improvmx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/issyl0%2Fterraform-provider-improvmx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/issyl0%2Fterraform-provider-improvmx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/issyl0","download_url":"https://codeload.github.com/issyl0/terraform-provider-improvmx/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245131459,"owners_count":20565828,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["emails","improvmx","terraform","terraform-provider"],"created_at":"2024-10-13T16:08:49.825Z","updated_at":"2025-03-23T16:33:05.796Z","avatar_url":"https://github.com/issyl0.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-provider-improvmx\n\nA very nascent Terraform provider for configuring [ImprovMX](https://improvmx.com) email forwards. Uses my [ImprovMX Golang API client](https://github.com/issyl0/go-improvmx). Download from the [Terraform Registry](https://registry.terraform.io/providers/issyl0/improvmx/latest).\n\n## Features\n\n- Create a domain (ImprovMX creates a wildcard forward for a domain by default).\n- Update a domain (to add/remove whitelabel (Enterprise plans only) and notification email settings).\n- Delete a domain.\n- Import a domain.\n- Create an email forward.\n- Delete an email forward.\n- Import an email forward.\n- Update an email forward (ImprovMX allows updating an email forward to send to more than one address, ie `alice@example.com,bob@example.com`).\n- Create, update and delete a domain's SMTP credentials.\n\n## Usage\n\n```hcl\nterraform {\n  required_providers {\n    improvmx = {\n      source = \"issyl0/improvmx\"\n    }\n  }\n}\n\nprovider \"improvmx\" {\n  // Set the `IMPROVMX_API_TOKEN` environment variable.\n}\n\nresource \"improvmx_domain\" \"example\" {\n  domain = \"example.com\"\n}\n\nresource \"improvmx_email_forward\" \"hello\" {\n  domain            = \"example.com\"\n  alias_name        = \"hello\"\n  destination_email = \"me@realdomain.com\"\n  depends_on = [improvmx_domain.example]\n}\n\nresource \"improvmx_email_forward\" \"wildcard\" {\n  domain            = \"example.com\"\n  alias_name        = \"*\"\n  destination_email = \"joe@realdomain.com\"\n  depends_on = [improvmx_domain.example]\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fissyl0%2Fterraform-provider-improvmx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fissyl0%2Fterraform-provider-improvmx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fissyl0%2Fterraform-provider-improvmx/lists"}