Skip to content

Latest commit

 

History

History
69 lines (50 loc) · 2.1 KB

source_zoom.md

File metadata and controls

69 lines (50 loc) · 2.1 KB
page_title subcategory description
airbyte_source_zoom Resource - terraform-provider-airbyte
SourceZoom Resource

airbyte_source_zoom (Resource)

SourceZoom Resource

Example Usage

resource "airbyte_source_zoom" "my_source_zoom" {
  configuration = {
    account_id             = "...my_account_id..."
    authorization_endpoint = "...my_authorization_endpoint..."
    client_id              = "...my_client_id..."
    client_secret          = "...my_client_secret..."
  }
  definition_id = "a9fb73c4-b1fb-4a36-9aa1-5885cf3ccb13"
  name          = "...my_name..."
  secret_id     = "...my_secret_id..."
  workspace_id  = "6eb5b976-337b-4ae9-8097-89298f1ccb4e"
}

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_id (String) The account ID for your Zoom account. You can find this in the Zoom Marketplace under the "Manage" tab for your app.
  • client_id (String) The client ID for your Zoom app. You can find this in the Zoom Marketplace under the "Manage" tab for your app.
  • client_secret (String, Sensitive) The client secret for your Zoom app. You can find this in the Zoom Marketplace under the "Manage" tab for your app.

Optional:

Import

Import is supported using the following syntax:

terraform import airbyte_source_zoom.my_airbyte_source_zoom ""