-
Notifications
You must be signed in to change notification settings - Fork 9
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
934e3fe
commit 36cae03
Showing
15 changed files
with
160 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
page_title: "doppler_integration_flyio Resource - terraform-provider-doppler" | ||
subcategory: "" | ||
description: |- | ||
Manage a Fly.io Doppler integration. | ||
--- | ||
|
||
# doppler_integration_flyio (Resource) | ||
|
||
Manage a Fly.io Doppler integration. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "doppler_integration_flyio" "prod" { | ||
name = "TF Fly.io" | ||
api_key = "fo1_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
} | ||
resource "doppler_secrets_sync_flyio" "backend_prod" { | ||
integration = doppler_integration_flyio.prod.id | ||
project = "backend" | ||
config = "prd" | ||
app_id = "my-app" | ||
restart_machines = true | ||
delete_behavior = "leave_in_target" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `api_key` (String, Sensitive) A Fly.io API key. | ||
- `name` (String) The name of the integration | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. |
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,49 @@ | ||
--- | ||
page_title: "doppler_secrets_sync_flyio Resource - terraform-provider-doppler" | ||
subcategory: "" | ||
description: |- | ||
Manage a Fly.io Doppler sync. | ||
--- | ||
|
||
# doppler_secrets_sync_flyio (Resource) | ||
|
||
Manage a Fly.io Doppler sync. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "doppler_integration_flyio" "prod" { | ||
name = "TF Fly.io" | ||
api_key = "fo1_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
} | ||
resource "doppler_secrets_sync_flyio" "backend_prod" { | ||
integration = doppler_integration_flyio.prod.id | ||
project = "backend" | ||
config = "prd" | ||
app_id = "my-app" | ||
restart_machines = true | ||
delete_behavior = "leave_in_target" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `app_id` (String) The app ID | ||
- `config` (String) The name of the Doppler config | ||
- `integration` (String) The slug of the integration to use for this sync | ||
- `project` (String) The name of the Doppler project | ||
- `restart_machines` (Boolean) Whether or not to restart the Fly.io machines when secrets are updated | ||
|
||
### Optional | ||
|
||
- `delete_behavior` (String) The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either `leave_in_target` (default) or `delete_from_target`. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. |
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
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,15 @@ | ||
resource "doppler_integration_flyio" "prod" { | ||
name = "TF Fly.io" | ||
api_key = "fo1_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
} | ||
|
||
resource "doppler_secrets_sync_flyio" "backend_prod" { | ||
integration = doppler_integration_flyio.prod.id | ||
project = "backend" | ||
config = "prd" | ||
|
||
app_id = "my-app" | ||
restart_machines = true | ||
|
||
delete_behavior = "leave_in_target" | ||
} |
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,16 @@ | ||
--- | ||
page_title: "doppler_integration_flyio Resource - terraform-provider-doppler" | ||
subcategory: "" | ||
description: |- | ||
Manage a Fly.io Doppler integration. | ||
--- | ||
|
||
# doppler_integration_flyio (Resource) | ||
|
||
Manage a Fly.io Doppler integration. | ||
|
||
## Example Usage | ||
|
||
{{tffile "examples/resources/integration_flyio.tf"}} | ||
|
||
{{ .SchemaMarkdown | trimspace }} |
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,16 @@ | ||
--- | ||
page_title: "doppler_secrets_sync_flyio Resource - terraform-provider-doppler" | ||
subcategory: "" | ||
description: |- | ||
Manage a Fly.io Doppler sync. | ||
--- | ||
|
||
# doppler_secrets_sync_flyio (Resource) | ||
|
||
Manage a Fly.io Doppler sync. | ||
|
||
## Example Usage | ||
|
||
{{tffile "examples/resources/integration_flyio.tf"}} | ||
|
||
{{ .SchemaMarkdown | trimspace }} |