terraform-provider-twilio/README.md

118 строки
4.2 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

# Twilio Terraform Provider
[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/twilio/terraform-provider-twilio?)](https://github.com/Twilio/terraform-provider-twilio/releases/latest)
[![Terraform Registry](https://img.shields.io/badge/registry-twilio-green?logo=terraform&style=flat)](https://registry.terraform.io/providers/twilio/twilio/latest)
2020-01-30 21:12:18 +03:00
## Project Status
:warning: This project is currently in **PILOT** and under active development. If you would like to participate in the pilot, please sign up for [Twilio Insiders](https://twil.io/insiders).
## Requirements
2021-06-25 17:04:34 +03:00
- [Terraform](https://www.terraform.io/downloads.html) v0.15.x
- [Go](https://golang.org/doc/install) 1.15+ (to build the provider plugin)
## Resource Documentation
Documentation on the available resources that can be managed by this provider and their parameters can be found [here](twilio/resources/README.md).
Note that file upload resources are currently not available.
## Building The Provider
Clone repository:
```sh
2021-06-25 17:04:34 +03:00
git clone git@github.com:twilio/terraform-provider-twilio
2020-01-30 21:12:18 +03:00
```
Enter the provider directory and build the provider:
```sh
2021-06-25 17:04:34 +03:00
make build
2020-01-30 21:12:18 +03:00
```
## Installing and Using the Provider
2021-06-25 17:04:34 +03:00
1. Run `make install` to install and build the twilio-terraform-provider.
2021-05-14 21:28:42 +03:00
2. Configure the Twilio provider with your twilio credentials in your Terraform configuration file (e.g. main.tf). These can also be set via `TWILIO_ACCOUNT_SID` and `TWILIO_AUTH_TOKEN` environment variables.
3. Add your resource configurations to your Terraform configuration file (e.g. main.tf).
```terraform
terraform {
2021-06-29 21:41:11 +03:00
required_providers {
twilio = {
source = "twilio/twilio"
version = ">=0.4.0"
}
2021-06-29 21:41:11 +03:00
}
}
# Credentials can be found at www.twilio.com/console.
provider "twilio" {
// account_sid defaults to TWILIO_ACCOUNT_SID env var
// auth_token defaults to TWILIO_AUTH_TOKEN env var
}
resource "twilio_api_accounts_keys_v2010" "key_name" {
2021-06-29 21:41:11 +03:00
friendly_name = "terraform key"
}
output "messages" {
2021-06-29 21:41:11 +03:00
value = twilio_api_accounts_keys_v2010.key_name
}
```
4. Run `terraform init` and `terraform apply` to initialize and apply changes to your Twilio infrastructure.
## Examples
For usage examples, checkout the [documentation in usage.md](usage.md) and the [examples folder](examples).
## Developing the Provider
The boilerplate includes the following:
- `Makefile` contains helper functions used to build, package and install the Twilio Terraform Provider. It's currently written for MacOS Terraform provider development, but you can change the variables at the top of the file to match your OS_ARCH.
The `install` function is configured to install the provider into the ~/.terraform.d/plugins/ folder. To use the locally installed provider, prefix the source path with `local` in your Terraform configuration file (i.e., `source = "local/twilio/twilio"`). Then run `terraform init` to use the locally built provider.
- `examples` contains sample Terraform configuration that can be used to test the Twilio provider
- `twilio` contains the main provider code. This will be where the provider's resources and data source implementations will be defined.
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.15+ is _required_).
To compile the provider, run `make build`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
```sh
2021-06-25 17:04:34 +03:00
make build
...
2021-06-25 17:04:34 +03:00
$GOPATH/bin/terraform-provider-twilio
...
```
In order to run the full suite of Acceptance tests, run `make testacc`. Provide your Account SID and Auth Token as environment variables to properly configure the test suite.
_Note:_ Acceptance tests create real resources, and often cost money to run.
```sh
2021-06-25 17:04:34 +03:00
make testacc ACCOUNT_SID=YOUR_ACCOUNT_SID AUTH_TOKEN=YOUR_AUTH_TOKEN
2020-01-30 21:12:18 +03:00
```
You can also specify a particular suite to run like so:
```shell
2021-06-25 17:04:34 +03:00
make testacc TEST=./twilio/ ACCOUNT_SID=YOUR_ACCOUNT_SID AUTH_TOKEN=YOUR_AUTH_TOKEN
```
2020-01-30 21:12:18 +03:00
2021-06-22 22:48:50 +03:00
An example test file can be found [here](https://github.com/twilio/terraform-provider-twilio/blob/main/twilio/resources_flex_test.go).
### Debugging
2020-01-30 21:12:18 +03:00
First:
```sh
2021-06-25 17:04:34 +03:00
export TF_LOG=TRACE
2020-01-30 21:12:18 +03:00
```
then refer to the [Terraform Debugging Documentation](https://www.terraform.io/docs/internals/debugging.html).