文档

alicloud_cr_vpc_endpoint_linked_vpc

更新时间:
一键部署

Provides a CR Vpc Endpoint Linked Vpc resource.

For information about CR Vpc Endpoint Linked Vpc and how to use it, see What is Vpc Endpoint Linked Vpc.

-> NOTE: Available since v1.199.0.

Example Usage

Basic Usage

variable "name" {
  default = "tf-example"
}
data "alicloud_zones" "default" {
  available_resource_creation = "VSwitch"
}
resource "alicloud_vpc" "default" {
  vpc_name   = var.name
  cidr_block = "10.4.0.0/16"
}

resource "alicloud_vswitch" "default" {
  vswitch_name = var.name
  cidr_block   = "10.4.0.0/24"
  vpc_id       = alicloud_vpc.default.id
  zone_id      = data.alicloud_zones.default.zones.0.id
}

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

resource "alicloud_cr_vpc_endpoint_linked_vpc" "default" {
  instance_id                      = alicloud_cr_ee_instance.default.id
  vpc_id                           = alicloud_vpc.default.id
  vswitch_id                       = alicloud_vswitch.default.id
  module_name                      = "Registry"
  enable_create_dns_record_in_pvzt = true
}

Argument Reference

The following arguments are supported:

  • instance_id - (Required, ForceNew) The ID of the instance.
  • vpc_id - (Required, ForceNew) The ID of the VPC.
  • vswitch_id - (Required, ForceNew) The ID of the vSwitch.
  • module_name - (Required, ForceNew) The name of the module that you want to access. Valid Values:
    • Registry: the image repository.
    • Chart: a Helm chart.
  • enable_create_dns_record_in_pvzt - (Optional) Specifies whether to automatically create an Alibaba Cloud DNS PrivateZone record. Valid Values:
    • true: automatically creates a PrivateZone record.
    • false: does not automatically create a PrivateZone record.

Attributes Reference

The following attributes are exported:

  • id - The resource ID in terraform of Vpc Endpoint Linked Vpc. It formats as <instance_id>:<vpc_id>:<vswitch_id>:<module_name>.
  • status - The status of the Vpc Endpoint Linked Vpc.

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • create - (Defaults to 3 mins) Used when create the Vpc Endpoint Linked Vpc.
  • delete - (Defaults to 3 mins) Used when delete the Vpc Endpoint Linked Vpc.

Import

CR Vpc Endpoint Linked Vpc can be imported using the id, e.g.

$ terraform import alicloud_cr_vpc_endpoint_linked_vpc.example <instance_id>:<vpc_id>:<vswitch_id>:<module_name>

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