-
Notifications
You must be signed in to change notification settings - Fork 15
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
update generated docs action
committed
Jan 14, 2024
1 parent
fb6bde6
commit 102d637
Showing
4 changed files
with
99 additions
and
4 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,38 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "env0_gcp_oidc_credentials Data Source - terraform-provider-env0" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# env0_gcp_oidc_credentials (Data Source) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "env0_gcp_oidc_credentials" "credentials" { | ||
name = "example" | ||
credential_configuration_file_content = jsonencode({ | ||
"key" : "value" | ||
}) | ||
} | ||
data "env0_gcp_oidc_credentials" "by_id" { | ||
id = env0_gcp_oidc_credentials.example.id | ||
} | ||
data "env0_gcp_oidc_credentials" "by_name" { | ||
name = env0_gcp_oidc_credentials.example.name | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `id` (String) the id of the gcp_oidc oidc credentials | ||
- `name` (String) the name of the gcp_oidc oidc credentials |
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,43 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "env0_gcp_oidc_credentials Resource - terraform-provider-env0" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# env0_gcp_oidc_credentials (Resource) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "env0_gcp_oidc_credentials" "credentials" { | ||
name = "example" | ||
credential_configuration_file_content = jsonencode({ | ||
"key" : "value" | ||
}) | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `credential_configuration_file_content` (String) the JSON content of the JWT configuration file | ||
- `name` (String) name for the oidc credentials | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import env0_gcp_oidc_credentials.by_id d31a6b30-5f69-4d24-937c-22322754934e | ||
terraform import env0_gcp_oidc_credentials.by_name "credentials name" | ||
``` |