page_title | subcategory | description |
---|---|---|
airbyte_source_senseforce Resource - terraform-provider-airbyte |
SourceSenseforce Resource |
SourceSenseforce Resource
resource "airbyte_source_senseforce" "my_source_senseforce" {
configuration = {
access_token = "...my_access_token..."
backend_url = "https://galaxyapi.senseforce.io"
dataset_id = "8f418098-ca28-4df5-9498-0df9fe78eda7"
start_date = "2017-01-25"
}
definition_id = "72d98b8b-013b-41d6-acb5-1010c16f89ee"
name = "...my_name..."
secret_id = "...my_secret_id..."
workspace_id = "c04af849-0e4c-40a5-9d00-ad43af2baa4d"
}
configuration
(Attributes) (see below for nested schema)name
(String) Name of the source e.g. dev-mysql-instance.workspace_id
(String)
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.
created_at
(Number)source_id
(String)source_type
(String)
Required:
access_token
(String, Sensitive) Your API access token. See here. The toke is case sensitive.backend_url
(String) Your Senseforce API backend URL. This is the URL shown during the Login screen. See here for more details. (Note: Most Senseforce backend APIs have the term 'galaxy' in their ULR)dataset_id
(String) The ID of the dataset you want to synchronize. The ID can be found in the URL when opening the dataset. See here for more details. (Note: As the Senseforce API only allows to synchronize a specific dataset, each dataset you want to synchronize needs to be implemented as a separate airbyte source).start_date
(String) UTC date and time in the format 2017-01-25. Only data with "Timestamp" after this date will be replicated. Important note: This start date must be set to the first day of where your dataset provides data. If your dataset has data from 2020-10-10 10:21:10, set the start_date to 2020-10-10 or later
Import is supported using the following syntax:
terraform import airbyte_source_senseforce.my_airbyte_source_senseforce ""