You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- New resource `fivetran_local_processing_agent` that allows to manage Local Processing Agents.
14
+
- New data source `fivetran_local_processing_agent` that allows to retrieve details of the existing Local Processing Agent for a given identifier.
15
+
- New data source `fivetran_local_processing_agents` that allows to retrieve the list of existing Local Processing Agents available for the current account.
11
16
12
17
## Updated
18
+
Updates to support management of local processing agents:
19
+
- Resource `fivetran_connector` updates:
20
+
- Added field `fivetran_connector.local_processing_agent_id`.
21
+
22
+
- Resource `fivetran_destination` updates:
23
+
- Added field `fivetran_connector.local_processing_agent_id`.
24
+
- Added field `fivetran_connector.networking_method`.
25
+
26
+
- Datasource `fivetran_connector` updates:
27
+
- Added field `fivetran_connector.local_processing_agent_id`.
28
+
29
+
- Datasource `fivetran_destination` updates:
30
+
- Added field `fivetran_connector.local_processing_agent_id`.
31
+
- Added field `fivetran_connector.networking_method`.
32
+
13
33
- Resource `fivetran_connector_schema_config` reworked, added new validation logic and new field `validation_level`.
14
34
-`fivetran_connector_schema_config.validation_level` allows to setup desired level of schema validation before apply
15
35
- NONE: no validation needed, the fastest way to apply schema, especially for a newly created connector - it will use new [Create a Connector Schema Config](https://fivetran.com/docs/rest-api/connectors#createaconnectorschemaconfig) endpoint.
Copy file name to clipboardexpand all lines: docs/data-sources/connector.md
+1
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ data "fivetran_connector" "connector" {
30
30
-`destination_schema` (Block, Read-only) (see [below for nested schema](#nestedblock--destination_schema))
31
31
-`failed_at` (String) The timestamp of the time the connector sync failed last time.
32
32
-`group_id` (String) The unique identifier for the Group (Destination) within the Fivetran system.
33
+
-`local_processing_agent_id` (String) The local processing agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
33
34
-`name` (String) The name used both as the connector's name within the Fivetran system and as the source schema's name within your destination.
34
35
-`networking_method` (String) Possible values: Directly, PrivateLink, SshTunnel, ProxyAgent.
35
36
-`pause_after_trial` (Boolean) Specifies whether the connector should be paused after the free trial period has ended.
Copy file name to clipboardexpand all lines: docs/data-sources/destination.md
+2
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ data "fivetran_destination" "dest" {
26
26
-`config` (Block, Read-only) (see [below for nested schema](#nestedblock--config))
27
27
-`daylight_saving_time_enabled` (Boolean) Shift my UTC offset with daylight savings time (US Only)
28
28
-`group_id` (String) The unique identifier for the Group within the Fivetran system.
29
+
-`local_processing_agent_id` (String) The local processing agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
30
+
-`networking_method` (String) Possible values: Directly, PrivateLink, SshTunnel, ProxyAgent.
29
31
-`region` (String) Data processing location. This is where Fivetran will operate and run computation on data.
30
32
-`service` (String) The destination type id within the Fivetran system.
-`auth` (Block, Optional) (see [below for nested schema](#nestedblock--auth))
71
71
-`config` (Block, Optional) (see [below for nested schema](#nestedblock--config))
72
72
-`destination_schema` (Block, Optional) (see [below for nested schema](#nestedblock--destination_schema))
73
+
-`local_processing_agent_id` (String) The local processing agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
73
74
-`networking_method` (String) Possible values: Directly, PrivateLink, SshTunnel, ProxyAgent.
74
75
-`proxy_agent_id` (String) The proxy agent ID.
75
76
-`run_setup_tests` (Boolean) Specifies whether the setup tests should be run automatically. The default value is TRUE.
-`config` (Block, Optional) (see [below for nested schema](#nestedblock--config))
46
46
-`daylight_saving_time_enabled` (Boolean) Shift my UTC offset with daylight savings time (US Only)
47
+
-`local_processing_agent_id` (String) The local processing agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
48
+
-`networking_method` (String) Possible values: Directly, PrivateLink, SshTunnel, ProxyAgent.
47
49
-`run_setup_tests` (Boolean) Specifies whether the setup tests should be run automatically. The default value is TRUE.
48
50
-`timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
49
51
-`trust_certificates` (Boolean) Specifies whether we should trust the certificate automatically. The default value is FALSE. If a certificate is not trusted automatically, it has to be approved with [Certificates Management API Approve a destination certificate](https://fivetran.com/docs/rest-api/certificates#approveadestinationcertificate).
0 commit comments