-
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 docs for Google Container Registry
- Loading branch information
1 parent
9f24b6f
commit c567487
Showing
4 changed files
with
59 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
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> | ||
``` |
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
1 change: 1 addition & 0 deletions
1
examples/resources/octopusdeploy_google_container_registry/import.sh
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_google_container_registry.<name> <feed-id> |
6 changes: 6 additions & 0 deletions
6
examples/resources/octopusdeploy_google_container_registry/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_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)" | ||
} |