-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use go client branch for now and update docs
- Loading branch information
1 parent
633ad4b
commit 53d4eb6
Showing
4 changed files
with
52 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "octopusdeploy_generic_openid_connect_account Resource - terraform-provider-octopusdeploy" | ||
subcategory: "" | ||
description: |- | ||
This resource manages Generic OpenID Connect accounts in Octopus Deploy. | ||
--- | ||
|
||
# octopusdeploy_generic_openid_connect_account (Resource) | ||
|
||
This resource manages Generic OpenID Connect accounts in Octopus Deploy. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "octopusdeploy_generic_openid_connect_account" "example" { | ||
name = "Generic OpenID Connect Account (OK to Delete)" | ||
execution_subject_keys = ["space", "project"] | ||
audience = "api://default" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) The name of this resource. | ||
|
||
### Optional | ||
|
||
- `audience` (String) Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID. | ||
- `description` (String) The description of this Azure OpenID Connect account. | ||
- `environments` (List of String) A list of environment IDs associated with this resource. | ||
- `execution_subject_keys` (List of String) Keys to include in a deployment or runbook. Valid options are `space`, `environment`, `project`, `tenant`, `runbook`, `account`, `type` | ||
- `id` (String) The unique ID for this resource. | ||
- `space_id` (String) The space ID associated with this resource. | ||
- `tenant_tags` (List of String) A list of tenant tags associated with this resource. | ||
- `tenanted_deployment_participation` (String) The tenanted deployment mode of the resource. Valid account types are `Untenanted`, `TenantedOrUntenanted`, or `Tenanted`. | ||
- `tenants` (List of String) A list of tenant IDs associated with this resource. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import [options] octopusdeploy_generic_openid_connect_account.<name> <account-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