Skip to content

Latest commit

 

History

History
69 lines (50 loc) · 1.9 KB

source_twilio.md

File metadata and controls

69 lines (50 loc) · 1.9 KB
page_title subcategory description
airbyte_source_twilio Resource - terraform-provider-airbyte
SourceTwilio Resource

airbyte_source_twilio (Resource)

SourceTwilio Resource

Example Usage

resource "airbyte_source_twilio" "my_source_twilio" {
  configuration = {
    account_sid     = "...my_account_sid..."
    auth_token      = "...my_auth_token..."
    lookback_window = 60
    start_date      = "2020-10-01T00:00:00Z"
  }
  definition_id = "a1f4e5ac-fef3-4693-ab2c-c34fd78362b3"
  name          = "...my_name..."
  secret_id     = "...my_secret_id..."
  workspace_id  = "a15d8382-2d59-4454-bd6d-8abe446a9faa"
}

Schema

Required

  • configuration (Attributes) (see below for nested schema)
  • name (String) Name of the source e.g. dev-mysql-instance.
  • workspace_id (String)

Optional

  • definition_id (String) The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
  • secret_id (String) Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.

Read-Only

  • created_at (Number)
  • source_id (String)
  • source_type (String)

Nested Schema for configuration

Required:

  • account_sid (String, Sensitive) Twilio account SID
  • auth_token (String, Sensitive) Twilio Auth Token.
  • start_date (String) UTC date and time in the format 2020-10-01T00:00:00Z. Any data before this date will not be replicated.

Optional:

  • lookback_window (Number) How far into the past to look for records. (in minutes). Default: 0

Import

Import is supported using the following syntax:

terraform import airbyte_source_twilio.my_airbyte_source_twilio ""