mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-14 22:02:22 -04:00
* docs/vsphere: Fix code block * docs: Convert `...` to `# ...` to allow `terraform fmt`ing * docs: Trim trailing whitespace * docs: First-pass run of `terraform fmt` on code examples
1.7 KiB
1.7 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| rancher | Rancher: rancher_registry_credential | docs-rancher-resource-registry-credential | Provides a Rancher Registy Credential resource. This can be used to create registry credentials for rancher environments and retrieve their information. |
rancher_registry_credential
Provides a Rancher Registy Credential resource. This can be used to create registry credentials for rancher environments and retrieve their information.
Example Usage
# Create a new Rancher registry
resource "rancher_registry_credential" "dockerhub" {
name = "dockerhub"
description = "DockerHub Registry Credential"
registry_id = "${rancher_registry.dockerhub.id}"
email = "myself@company.com"
public_value = "myself"
secret_value = "mypass"
}
Argument Reference
The following arguments are supported:
name- (Required) The name of the registry credential.description- (Optional) A registry credential description.registry_id- (Required) The ID of the registry to create the credential for.email- (Required) The email of the account.public_value- (Required) The public value (user name) of the account.secret_value- (Required) The secret value (password) of the account.
Attributes Reference
No further attributes are exported.
Import
Registry credentials can be imported using the Registry and credentials
IDs in the format <registry_id>/<credential_id>
$ terraform import rancher_registry_credential.private_registry 1sp31/1c605
If the credentials for the Rancher provider have access to the global API, then
then registry_id can be omitted e.g.
$ terraform import rancher_registry_credential.private_registry 1c605