Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 1.8 KB

source_google_forms.md

File metadata and controls

68 lines (51 loc) · 1.8 KB
page_title subcategory description
airbyte_source_google_forms Resource - terraform-provider-airbyte
SourceGoogleForms Resource

airbyte_source_google_forms (Resource)

SourceGoogleForms Resource

Example Usage

resource "airbyte_source_google_forms" "my_source_googleforms" {
  configuration = {
    client_id            = "...my_client_id..."
    client_refresh_token = "...my_client_refresh_token..."
    client_secret        = "...my_client_secret..."
    form_id = [
      "{ \"see\": \"documentation\" }"
    ]
  }
  definition_id = "e310de00-7b81-4e5d-90af-81b130e7236f"
  name          = "...my_name..."
  secret_id     = "...my_secret_id..."
  workspace_id  = "8f91c851-d01a-483e-887b-d0032fafc13f"
}

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:

  • client_id (String, Sensitive)
  • client_refresh_token (String, Sensitive)
  • client_secret (String, Sensitive)
  • form_id (List of String)

Import

Import is supported using the following syntax:

terraform import airbyte_source_google_forms.my_airbyte_source_google_forms ""