-
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.
Add documentation for OCI Registry feed
- Loading branch information
1 parent
2728956
commit a5f5609
Showing
4 changed files
with
57 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_oci_registry_feed Resource - terraform-provider-octopusdeploy" | ||
subcategory: "" | ||
description: |- | ||
This resource manages a OCI Registry feed in Octopus Deploy. | ||
--- | ||
|
||
# octopusdeploy_oci_registry_feed (Resource) | ||
|
||
This resource manages a OCI Registry feed in Octopus Deploy. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "octopusdeploy_oci_registry_feed" "example" { | ||
feed_uri = "oci://test-registry.docker.io" | ||
password = "test-password" | ||
name = "Test oci Registry Feed (OK to Delete)" | ||
username = "test-username" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `feed_uri` (String) | ||
- `name` (String) The name of this resource. | ||
|
||
### Optional | ||
|
||
- `password` (String, Sensitive) The password associated with this resource. | ||
- `space_id` (String) The space ID associated with this OCI registry. | ||
- `username` (String, Sensitive) The username associated with this resource. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The unique ID for this resource. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import [options] octopusdeploy_oci_registry_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 @@ | ||
terraform import [options] octopusdeploy_oci_registry_feed.<name> <feed-id> |
6 changes: 6 additions & 0 deletions
6
examples/resources/octopusdeploy_oci_registry_feed/resource.tf
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,6 @@ | ||
resource "octopusdeploy_oci_registry_feed" "example" { | ||
feed_uri = "oci://test-registry.docker.io" | ||
password = "test-password" | ||
name = "Test oci Registry Feed (OK to Delete)" | ||
username = "test-username" | ||
} |