文档

alicloud_cr_ee_namespace

更新时间:
一键部署

This resource will help you to manager Container Registry Enterprise Edition namespaces.

For information about Container Registry Enterprise Edition namespaces and how to use it, see Create a Namespace

-> NOTE: Available since v1.86.0.

-> NOTE: You need to set your registry password in Container Registry Enterprise Edition console before use this resource.

Example Usage

Basic Usage

variable "name" {
  default = "terraform-example-name"
}
resource "alicloud_cr_ee_instance" "example" {
  payment_type   = "Subscription"
  period         = 1
  renew_period   = 0
  renewal_status = "ManualRenewal"
  instance_type  = "Advanced"
  instance_name  = var.name
}

resource "alicloud_cr_ee_namespace" "example" {
  instance_id        = alicloud_cr_ee_instance.example.id
  name               = var.name
  auto_create        = false
  default_visibility = "PUBLIC"
}

Argument Reference

The following arguments are supported:

  • instance_id - (Required, ForceNew) ID of Container Registry Enterprise Edition instance.
  • name - (Required, ForceNew) Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.
  • auto_create - (Required) Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.
  • default_visibility - (Required) PUBLIC or PRIVATE, default repository visibility in this namespace.

Attributes Reference

The following attributes are exported:

  • id - ID of Container Registry Enterprise Edition namespace. The value is in format {instance_id}:{namespace} .

Import

Container Registry Enterprise Edition namespace can be imported using the {instance_id}:{namespace}, e.g.

$ terraform import alicloud_cr_ee_namespace.default cri-xxx:my-namespace

  • 本页导读 (0)
文档反馈