generated from hashicorp/terraform-provider-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 10
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
01b5bd4
commit 8062987
Showing
32 changed files
with
350 additions
and
14 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 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "kestra_kv Data Source - terraform-provider-kestra" | ||
subcategory: "" | ||
description: |- | ||
Use this data source to access value for an existing Key-Value pair. | ||
--- | ||
|
||
# kestra_kv (Data Source) | ||
|
||
Use this data source to access value for an existing Key-Value pair. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `key` (String) The key to fetch value for. | ||
- `namespace` (String) The namespace of the Key-Value pair. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `tenant_id` (String) The tenant id. | ||
- `type` (String) The type of the value. One of STRING, NUMBER, BOOLEAN, DATETIME, DATE, DURATION, JSON. | ||
- `value` (String) The fetched value. |
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,46 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "kestra_service_account Data Source - terraform-provider-kestra" | ||
subcategory: "" | ||
description: |- | ||
Use this data source to access information about an existing Kestra Service Account. | ||
--- | ||
|
||
# kestra_service_account (Data Source) | ||
|
||
Use this data source to access information about an existing Kestra Service Account. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "kestra_user_service_account" "example" { | ||
id = "68xAawPfiJPkTkZJIPX6jQ" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) The service account id. | ||
|
||
### Optional | ||
|
||
- `group` (Block Set) The service account group. (see [below for nested schema](#nestedblock--group)) | ||
|
||
### Read-Only | ||
|
||
- `description` (String) The service account description. | ||
- `username` (String) The service account name. | ||
|
||
<a id="nestedblock--group"></a> | ||
### Nested Schema for `group` | ||
|
||
Optional: | ||
|
||
- `tenant_id` (String) The tenant id for this group. | ||
|
||
Read-Only: | ||
|
||
- `group_id` (String) The group id. |
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,40 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "kestra_user_api_tokens Data Source - terraform-provider-kestra" | ||
subcategory: "" | ||
description: |- | ||
Use this data source to access information about the API tokens of a Kestra User. | ||
--- | ||
|
||
# kestra_user_api_tokens (Data Source) | ||
|
||
Use this data source to access information about the API tokens of a Kestra User. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `user_id` (String) The ID of the user owning the API Tokens. | ||
|
||
### Read-Only | ||
|
||
- `api_tokens` (Set of Object) The API tokens of the user. (see [below for nested schema](#nestedatt--api_tokens)) | ||
- `id` (String) The ID of this resource. | ||
|
||
<a id="nestedatt--api_tokens"></a> | ||
### Nested Schema for `api_tokens` | ||
|
||
Read-Only: | ||
|
||
- `description` (String) | ||
- `exp` (String) | ||
- `expired` (Boolean) | ||
- `extended` (Boolean) | ||
- `iat` (String) | ||
- `last_used` (String) | ||
- `name` (String) | ||
- `token_id` (String) | ||
- `token_prefix` (String) |
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,26 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "kestra_worker_group Data Source - terraform-provider-kestra" | ||
subcategory: "" | ||
description: |- | ||
Use this data source to access information about an existing Kestra Worker Group. | ||
--- | ||
|
||
# kestra_worker_group (Data Source) | ||
|
||
Use this data source to access information about an existing Kestra Worker Group. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `key` (String) The worker group key. | ||
|
||
### Read-Only | ||
|
||
- `allowed_tenants` (String) The list of tenants allowed to use the worker group. | ||
- `description` (String) The worker group description. | ||
- `id` (String) The worker group id. |
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,31 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "kestra_kv Resource - terraform-provider-kestra" | ||
subcategory: "" | ||
description: |- | ||
Manages a Kestra Namespace File. | ||
--- | ||
|
||
# kestra_kv (Resource) | ||
|
||
Manages a Kestra Namespace File. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `key` (String) The key of the pair. | ||
- `namespace` (String) The namespace of the Key-Value pair. | ||
- `value` (String) The fetched value. | ||
|
||
### Optional | ||
|
||
- `type` (String) The type of the value. If not provided, we will try to deduce the type based on the value. Useful in case you provide numbers, booleans, dates or json that you want to be stored as string. Accepted values are: STRING, NUMBER, BOOLEAN, DATETIME, DATE, DURATION, JSON. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `tenant_id` (String) The tenant id. |
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
Oops, something went wrong.