Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.22 KB

docker_registry_integration.md

File metadata and controls

48 lines (34 loc) · 1.22 KB
page_title subcategory description
morpheus_docker_registry_integration Resource - terraform-provider-morpheus
Provides a doker registry integration resource

morpheus_docker_registry_integration

Provides a doker registry integration resource

Example Usage

resource "morpheus_docker_registry_integration" "tf_example_docker_registry_integration" {
  name     = "tfexampledockerregistry"
  enabled  = true
  url      = "https://index.docker.io/v1/"
  username = "admin"
  password = "password123"
}

Schema

Required

  • name (String) The name of the docker registry integration
  • url (String) The url of the docker registry

Optional

  • enabled (Boolean) Whether the docker registry integration is enabled
  • password (String, Sensitive) The password of the account used to authenticate to the docker registry
  • username (String) The username of the account used to authenticate to the docker registry

Read-Only

  • id (String) The ID of the docker registry integration

Import

Import is supported using the following syntax:

terraform import morpheus_docker_registry_integration.tf_example_docker_registry_integration 1