-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62dc137
commit 6514d6a
Showing
46 changed files
with
1,703 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
page_title: "Data Source: fivetran_hybrid_deployment_agents" | ||
--- | ||
|
||
# Data Source: fivetran_hybrid_deployment_agents | ||
|
||
This data source returns a hybrid deployment agent object. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "fivetran_hybrid_deployment_agents" "hybrid_deployment_agent" { | ||
id = "hybrid_deployment_agent_id" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) The unique identifier for the hybrid deployment agent within your account. | ||
|
||
### Read-Only | ||
|
||
- `display_name` (String) The unique name for the hybrid deployment agent. | ||
- `group_id` (String) The unique identifier for the Group within the Fivetran system. | ||
- `registered_at` (String) The timestamp of the time the hybrid deployment agent was created in your account. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
page_title: "Data Source: fivetran_hybrid_deployment_agents" | ||
--- | ||
|
||
# Data Source: fivetran_hybrid_deployment_agents | ||
|
||
This data source returns a list of all hybrid deployment agents within your Fivetran account. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "fivetran_hybrid_deployment_agents" "hybrid_deployment_agents" { | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `items` (Attributes Set) (see [below for nested schema](#nestedatt--items)) | ||
|
||
<a id="nestedatt--items"></a> | ||
### Nested Schema for `items` | ||
|
||
Required: | ||
|
||
- `id` (String) The unique identifier for the hybrid deployment agent within your account. | ||
|
||
Read-Only: | ||
|
||
- `display_name` (String) The unique name for the hybrid deployment agent. | ||
- `group_id` (String) The unique identifier for the Group within the Fivetran system. | ||
- `registered_at` (String) The timestamp of the time the hybrid deployment agent was created in your account. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
---- | ||
page_title: "Version Update 1.4.0" | ||
subcategory: "Upgrade Guides" | ||
--- | ||
|
||
# Version 1.4.0 | ||
|
||
## What's new in 1.4.0 | ||
|
||
In version `1.4.0` of Fivetran Terraform provider, resource `fivetran_local_processing_agent` renamed to `fivetran_hybrid_deployment_agent` | ||
|
||
## Migration guide | ||
|
||
### Provider | ||
|
||
Update your provider configuration in the following way: | ||
|
||
Previous configuration: | ||
|
||
```hcl | ||
required_providers { | ||
fivetran = { | ||
version = "~> 1.3.0" | ||
source = "fivetran/fivetran" | ||
} | ||
} | ||
``` | ||
|
||
Updated configuration: | ||
|
||
```hcl | ||
required_providers { | ||
fivetran = { | ||
version = ">= 1.4.0" | ||
source = "fivetran/fivetran" | ||
} | ||
} | ||
``` | ||
|
||
### Resource `fivetran_hybrid_deployment_agent` | ||
|
||
Update all your local processing agent resources (`fivetran_local_processing_agent`): | ||
|
||
Previous configuration: | ||
|
||
```hcl | ||
resource "fivetran_local_processing_agent" "test_agent" { | ||
} | ||
``` | ||
|
||
Updated configuration: | ||
|
||
```hcl | ||
resource "fivetran_hybrid_deployment_agent" "test_agent" { | ||
} | ||
``` | ||
|
||
### Resource `fivetran_connector` | ||
|
||
Update all your connector resources (`fivetran_connector`): | ||
|
||
Previous configuration: | ||
|
||
```hcl | ||
resource "fivetran_connector" "test_connector" { | ||
local_processing_agent_id = agent_id | ||
} | ||
``` | ||
|
||
Updated configuration: | ||
|
||
```hcl | ||
resource "fivetran_connector" "test_connector" { | ||
hybrid_deployment_agent_id = agent_id | ||
} | ||
``` | ||
|
||
### Resource `fivetran_destination` | ||
|
||
Update all your destination resources (`fivetran_destination`): | ||
|
||
Previous configuration: | ||
|
||
```hcl | ||
resource "fivetran_destination" "test_destination" { | ||
local_processing_agent_id = agent_id | ||
} | ||
``` | ||
|
||
Updated configuration: | ||
|
||
```hcl | ||
resource "fivetran_destination" "test_destination" { | ||
hybrid_deployment_agent_id = agent_id | ||
} | ||
``` | ||
|
||
### Update terraform state | ||
|
||
Once all configurations have been updated, run: | ||
|
||
``` | ||
terraform init -upgrade | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
page_title: "Resource: fivetran_hybrid_deployment_agent" | ||
--- | ||
|
||
# Resource: fivetran_hybrid_deployment_agent | ||
|
||
This resource allows you to create, update, and delete hybrid deployment agents. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "fivetran_hybrid_deployment_agent" "hybrid_deployment_agent" { | ||
provider = fivetran-provider | ||
display_name = "display_name" | ||
group_id = "group_id" | ||
auth_type = "AUTO" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `auth_type` (String) Type of authentification. Possible values `AUTO`,`MANUAL` | ||
- `display_name` (String) The unique name for the hybrid deployment agent. | ||
- `group_id` (String) The unique identifier for the Group within the Fivetran system. | ||
|
||
### Optional | ||
|
||
- `authentication_counter` (Number) Determines whether re-authentication needs to be performed. | ||
|
||
### Read-Only | ||
|
||
- `auth_json` (String) Base64-encoded content of the auth.json file. | ||
- `config_json` (String) Base64-encoded content of the config.json file. | ||
- `docker_compose_yaml` (String) Base64-encoded content of the compose file for the chosen containerization type. | ||
- `id` (String) The unique identifier for the hybrid deployment agent within your account. | ||
- `registered_at` (String) The timestamp of the time the hybrid deployment agent was created in your account. | ||
- `token` (String) Base64 encoded content of token. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.