alicloud_cr_chart_repository
更新时间:
Provides a CR Chart Repository resource.
For information about CR Chart Repository and how to use it, see What is Chart Repository.
-> NOTE: Available since v1.149.0.
Example Usage
Basic Usage
variable "name" {
  default = "tf-example"
}
resource "random_integer" "default" {
  min = 100000
  max = 999999
}
resource "alicloud_cr_ee_instance" "example" {
  payment_type   = "Subscription"
  period         = 1
  renew_period   = 0
  renewal_status = "ManualRenewal"
  instance_type  = "Advanced"
  instance_name  = "${var.name}-${random_integer.default.result}"
}
resource "alicloud_cr_chart_namespace" "example" {
  instance_id    = alicloud_cr_ee_instance.example.id
  namespace_name = "${var.name}-${random_integer.default.result}"
}
resource "alicloud_cr_chart_repository" "example" {
  repo_namespace_name = alicloud_cr_chart_namespace.example.namespace_name
  instance_id         = alicloud_cr_chart_namespace.example.instance_id
  repo_name           = "${var.name}-${random_integer.default.result}"
}
Argument Reference
The following arguments are supported:
instance_id- (Required, ForceNew) The ID of the Container Registry instance.repo_name- (Required, ForceNew) The name of the repository that you want to create.repo_namespace_name- (Required, ForceNew) The namespace to which the repository belongs.repo_type- (Optional) The default repository type. Valid values:PUBLIC,PRIVATE.summary- (Optional) The summary about the repository.
Attributes Reference
The following attributes are exported:
id- The resource ID of Chart Repository. The value formats as<instance_id>:<repo_namespace_name>:<repo_name>.
Import
CR Chart Repository can be imported using the id, e.g.
$ terraform import alicloud_cr_chart_repository.example <instance_id>:<repo_namespace_name>:<repo_name>
该文章对您有帮助吗?