holyshared / terraform-provider-twilio

Repository from Github https://github.comholyshared/terraform-provider-twilioRepository from Github https://github.comholyshared/terraform-provider-twilio

terraform-provider-twilio

How to use

Add provider to your main.tf

terraform {
  required_providers {
    twilio = {
      version = "0.1.5"
      source = "holyshared/twilio"
    }
  }
}

provider "twilio" {
  account_sid = var.account_sid
  auth_token = var.auth_token
}

After the addition is completed, the initialization is performed next.

terraform init

About

License:MIT License


Languages

Language:Go 97.9%Language:Makefile 2.1%