page_title | subcategory | description |
---|---|---|
airbyte_source_salesforce Resource - terraform-provider-airbyte |
SourceSalesforce Resource |
SourceSalesforce Resource
resource "airbyte_source_salesforce" "my_source_salesforce" {
configuration = {
client_id = "...my_client_id..."
client_secret = "...my_client_secret..."
force_use_bulk_api = true
is_sandbox = false
refresh_token = "...my_refresh_token..."
start_date = "2021-07-25"
stream_slice_step = "PT12H"
streams_criteria = [
{
criteria = "not contains"
value = "...my_value..."
}
]
}
definition_id = "ac775334-3ab2-43d2-b41a-9b554542b831"
name = "...my_name..."
secret_id = "...my_secret_id..."
workspace_id = "009ca65a-dea0-4cfe-b1a6-e5f50c2ef465"
}
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:
client_id
(String) Enter your Salesforce developer application's Client IDclient_secret
(String, Sensitive) Enter your Salesforce developer application's Client secretrefresh_token
(String, Sensitive) Enter your application's Salesforce Refresh Token used for Airbyte to access your Salesforce account.
Optional:
force_use_bulk_api
(Boolean) Toggle to use Bulk API (this might cause empty fields for some streams). Default: falseis_sandbox
(Boolean) Toggle if you're using a Salesforce Sandbox. Default: falsestart_date
(String) Enter the date (or date-time) in the YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ format. Airbyte will replicate the data updated on and after this date. If this field is blank, Airbyte will replicate the data for last two years.stream_slice_step
(String) The size of the time window (ISO8601 duration) to slice requests. Default: "P30D"streams_criteria
(Attributes List) Add filters to select only required stream based onSObject
name. Use this field to filter which tables are displayed by this connector. This is useful if your Salesforce account has a large number of tables (>1000), in which case you may find it easier to navigate the UI and speed up the connector's performance if you restrict the tables displayed by this connector. (see below for nested schema)
Required:
value
(String)
Optional:
criteria
(String) Default: "contains"; must be one of ["starts with", "ends with", "contains", "exacts", "starts not with", "ends not with", "not contains", "not exacts"]
Import is supported using the following syntax:
terraform import airbyte_source_salesforce.my_airbyte_source_salesforce ""