{"id":22344846,"url":"https://github.com/rjpearson94/terraform-provider-twilio","last_synced_at":"2025-06-11T15:38:20.942Z","repository":{"id":36995209,"uuid":"266392232","full_name":"RJPearson94/terraform-provider-twilio","owner":"RJPearson94","description":"Terraform Twilio provider","archived":false,"fork":false,"pushed_at":"2024-04-19T12:20:22.000Z","size":2480,"stargazers_count":32,"open_issues_count":4,"forks_count":7,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-11-15T04:07:35.738Z","etag":null,"topics":["provider","terraform","terraform-provider","terraform-registry","twilio","twilio-terraform-provider"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/providers/RJPearson94/twilio/latest/docs","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RJPearson94.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-05-23T18:05:35.000Z","updated_at":"2024-08-20T13:30:55.000Z","dependencies_parsed_at":"2024-01-13T17:37:49.211Z","dependency_job_id":"ce60985e-16cb-40c5-9669-2ab6fa2868a0","html_url":"https://github.com/RJPearson94/terraform-provider-twilio","commit_stats":null,"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RJPearson94%2Fterraform-provider-twilio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RJPearson94%2Fterraform-provider-twilio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RJPearson94%2Fterraform-provider-twilio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RJPearson94%2Fterraform-provider-twilio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RJPearson94","download_url":"https://codeload.github.com/RJPearson94/terraform-provider-twilio/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228078621,"owners_count":17865959,"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":["provider","terraform","terraform-provider","terraform-registry","twilio","twilio-terraform-provider"],"created_at":"2024-12-04T09:15:16.097Z","updated_at":"2024-12-04T09:15:16.645Z","avatar_url":"https://github.com/RJPearson94.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Provider for Twilio\n\n![Terraform Provider Checks](https://github.com/RJPearson94/terraform-provider-twilio/workflows/Terraform%20Provider%20Checks/badge.svg)\n[![Terraform Registry](https://img.shields.io/badge/registry-twilio-green?logo=terraform\u0026style=flat)](https://registry.terraform.io/providers/RJPearson94/twilio/latest)\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/RJPearson94/terraform-provider-twilio)](https://pkg.go.dev/github.com/RJPearson94/terraform-provider-twilio)\n[![Release](https://img.shields.io/github/release/RJPearson94/terraform-provider-twilio.svg)](https://github.com/RJPearson94/terraform-provider-twilio/releases/latest)\n[![Go Report Card](https://goreportcard.com/badge/github.com/RJPearson94/terraform-provider-twilio)](https://goreportcard.com/report/github.com/RJPearson94/terraform-provider-twilio)\n[![License](https://img.shields.io/github/license/RJPearson94/terraform-provider-twilio)](/LICENSE)\n\nThe Terraform Twilio provider is a plugin for [Terraform](https://www.terraform.io/) that allows for the lifecycle management of supported Twilio resources.\n\n\u003e ⚠️ **Disclaimer**: This project is not an official Twilio project and is not supported or endorsed by Twilio in any way. It is maintained in [my](https://github.com/RJPearson94) free time.\n\n## Getting Started\n\n- [Using Provider](./docs/index.md)\n- [Terraform Registry](https://registry.terraform.io/providers/RJPearson94/twilio/latest)\n- [Developing the Provider](./development.md)\n\n**NOTE:** The default branch for this project is called `main`\n\n## Documentation\n\nDocumentation of the provider and all supported resources can be found [here](./docs)\n\nDocumentation on managing sub-accounts can be found [here](./examples/account/sub-account/README.md)\n\n## Installation\n\n**NOTE:** This provider only supports Terraform 0.12+\n\n### Terraform 0.13+\n\nThe provider has been published to the [Terraform Registry](https://registry.terraform.io/providers/RJPearson94/twilio/latest) you need to add the following code to your Terraform configuration and run terraform init. Terraform will take care of installing the provider for you.\n\n```hcl\nterraform {\n  required_providers {\n    twilio = {\n      source = \"RJPearson94/twilio\"\n      version = \"\u003e= 0.2.1\"\n    }\n  }\n}\n\nprovider \"twilio\" {\n  # Configuration options\n}\n```\n\n### Terraform 0.12\n\nThis is a bit more work as you have to download the [latest release](https://github.com/RJPearson94/terraform-provider-twilio/releases/latest) of the terraform provider which can run on you machine operating system/ processor architecture. Then unzip the provider and place the provider in the `~/.terraform.d/plugins` folder (on most operating systems) and `%APPDATA%\\terraform.d\\plugins` on Windows. For more information see the [terraform docs](https://www.terraform.io/docs/extend/how-terraform-works.html#plugin-locations)\n\n## Dependencies\n\n- [Twilio Go SDK](https://github.com/RJPearson94/twilio-sdk-go)\n- [Terraform Plugin SDK](https://github.com/hashicorp/terraform-plugin-sdk)\n- [go-homdir](https://github.com/mitchellh/go-homedir)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frjpearson94%2Fterraform-provider-twilio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frjpearson94%2Fterraform-provider-twilio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frjpearson94%2Fterraform-provider-twilio/lists"}