-
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.
- Loading branch information
1 parent
794c1d3
commit 4a15298
Showing
8 changed files
with
310 additions
and
21 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,50 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "octopusdeploy_artifactory_generic_feed Resource - terraform-provider-octopusdeploy" | ||
subcategory: "" | ||
description: |- | ||
This resource manages a Artifactory Generic feed in Octopus Deploy. | ||
--- | ||
|
||
# octopusdeploy_artifactory_generic_feed (Resource) | ||
|
||
This resource manages a Artifactory Generic feed in Octopus Deploy. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "octopusdeploy_artifactory_generic_feed" "example" { | ||
feed_uri = "https://example.jfrog.io/" | ||
password = "test-password" | ||
name = "Test Artifactory Generic Feed (OK to Delete)" | ||
username = "test-username" | ||
repository = "repo" | ||
layout_regex = "this is regex" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `feed_uri` (String) | ||
- `name` (String) A short, memorable, unique name for this feed. Example: ACME Builds. | ||
- `repository` (String) | ||
|
||
### Optional | ||
|
||
- `id` (String) The unique ID for this resource. | ||
- `layout_regex` (String) | ||
- `package_acquisition_location_options` (List of String) | ||
- `password` (String, Sensitive) The password associated with this resource. | ||
- `space_id` (String) The space ID associated with this resource. | ||
- `username` (String, Sensitive) The username associated with this resource. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import [options] octopusdeploy_artifactory_generic_feed.<name> <feed-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
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: "octopusdeploy_azure_openid_connect Resource - terraform-provider-octopusdeploy" | ||
subcategory: "" | ||
description: |- | ||
This resource manages Azure OpenID Connect accounts in Octopus Deploy. | ||
--- | ||
|
||
# octopusdeploy_azure_openid_connect (Resource) | ||
|
||
This resource manages Azure OpenID Connect accounts in Octopus Deploy. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `application_id` (String) The application ID of this resource. | ||
- `name` (String) The name of this resource. | ||
- `subscription_id` (String) The subscription ID of this resource. | ||
- `tenant_id` (String) The tenant ID of this resource. | ||
|
||
### Optional | ||
|
||
- `account_test_subject_keys` (List of String) | ||
- `audience` (String) | ||
- `authentication_endpoint` (String) The authentication endpoint URI for this resource. | ||
- `azure_environment` (String) The Azure environment associated with this resource. Valid Azure environments are `AzureCloud`, `AzureChinaCloud`, `AzureGermanCloud`, or `AzureUSGovernment`. | ||
- `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) | ||
- `health_subject_keys` (List of String) | ||
- `id` (String) The unique ID for this resource. | ||
- `resource_manager_endpoint` (String) The resource manager endpoint URI 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. |
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.