Skip to content

Commit

Permalink
Add docs for Google Container Registry
Browse files Browse the repository at this point in the history
  • Loading branch information
denys-octopus committed Oct 24, 2024
1 parent 9f24b6f commit c567487
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 2 deletions.
50 changes: 50 additions & 0 deletions docs/resources/google_container_registry.md
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_google_container_registry Resource - terraform-provider-octopusdeploy"
subcategory: ""
description: |-
This resource manages a Google Container Registry feed in Octopus Deploy (alias for Docker Container Registry feed)
---

# octopusdeploy_google_container_registry (Resource)

This resource manages a Google Container Registry feed in Octopus Deploy (alias for Docker Container Registry feed)

## Example Usage

```terraform
resource "octopusdeploy_google_container_registry" "example" {
name = "Test Google Container Registry (OK to Delete)"
feed_uri = "https://google.docker.test"
registry_path = "testing/test-image"
password = "google authentication key file contents (json)"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `feed_uri` (String)
- `name` (String) The name of this resource.

### Optional

- `api_version` (String)
- `password` (String, Sensitive) The password associated with this resource.
- `registry_path` (String)
- `space_id` (String) The space ID associated with this Google container registry feed.
- `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_google_container_registry.<name> <feed-id>
```
4 changes: 2 additions & 2 deletions docs/resources/s3_feed.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "octopusdeploy_s3_feed Resource - terraform-provider-octopusdeploy"
subcategory: ""
description: |-
This resource manages a OCI Registry feed in Octopus Deploy.
This resource manages a Amazon S3 Bucket feed in Octopus Deploy.
---

# octopusdeploy_s3_feed (Resource)

This resource manages a OCI Registry feed in Octopus Deploy.
This resource manages a Amazon S3 Bucket feed in Octopus Deploy.

## Example Usage

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
terraform import [options] octopusdeploy_google_container_registry.<name> <feed-id>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
resource "octopusdeploy_google_container_registry" "example" {
name = "Test Google Container Registry (OK to Delete)"
feed_uri = "https://google.docker.test"
registry_path = "testing/test-image"
password = "google authentication key file contents (json)"
}

0 comments on commit c567487

Please sign in to comment.