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

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:

Attributes Reference

The following attributes are exported:

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