文档

alicloud_vpc_ha_vip

更新时间:

Provides a Vpc Ha Vip resource. Highly available virtual IP

For information about Vpc Ha Vip and how to use it, see What is Ha Vip.

Example Usage

Basic Usage

variable "name" {
  default = "tf-testacc-example"
}

data "alicloud_zones" "default" {
  available_resource_creation = "VSwitch"
}

resource "alicloud_vpc" "defaultVpc" {
  description = "tf-test-acc-vpc"
  vpc_name    = var.name
  cidr_block  = "192.168.0.0/16"
}

resource "alicloud_vswitch" "defaultVswitch" {
  vpc_id       = alicloud_vpc.defaultVpc.id
  cidr_block   = "192.168.0.0/21"
  vswitch_name = "${var.name}1"
  zone_id      = data.alicloud_zones.default.zones.0.id
  description  = "tf-testacc-vswitch"
}

resource "alicloud_resource_manager_resource_group" "defaultRg" {
  display_name        = "tf-testacc-rg819"
  resource_group_name = "${var.name}2"
}

resource "alicloud_resource_manager_resource_group" "changeRg" {
  display_name        = "tf-testacc-changerg670"
  resource_group_name = "${var.name}3"
}


resource "alicloud_vpc_ha_vip" "default" {
  description       = "test"
  vswitch_id        = alicloud_vswitch.defaultVswitch.id
  ha_vip_name       = var.name
  ip_address        = "192.168.1.101"
  resource_group_id = alicloud_resource_manager_resource_group.defaultRg.id
}

Argument Reference

The following arguments are supported:

  • description - (Optional) The description of the HaVip instance. The length is 2 to 256 characters.
  • ha_vip_name - (Optional) The name of the HaVip instance.
  • ip_address - (Optional, ForceNew, Computed) The ip address of the HaVip. If not filled, the default will be assigned one from the vswitch.
  • resource_group_id - (Optional, Computed) The ID of the resource group.
  • tags - (Optional, Map) The tags of HaVip.
  • vswitch_id - (Required, ForceNew) The switch ID to which the HaVip instance belongs.

The following arguments will be discarded. Please use new fields as soon as possible:

  • havip_name - (Deprecated from v1.205.0+) Field 'havip_name' has been deprecated from provider version 1.205.0. New field 'ha_vip_name' instead.

Attributes Reference

The following attributes are exported:

  • id - The ID of the resource supplied above.
  • associated_eip_addresses - EIP bound to HaVip.
  • associated_instance_type - The type of the instance that is bound to the HaVip. Value:-EcsInstance: ECS instance.-NetworkInterface: ENI instance.
  • associated_instances - An ECS instance that is bound to HaVip.
  • create_time - The creation time of the resource.
  • ha_vip_id - The ID of the resource.
  • master_instance_id - The primary instance ID bound to HaVip.
  • status - The status of this resource instance.
  • vpc_id - The VPC ID to which the HaVip instance belongs.

Timeouts

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

  • create - (Defaults to 5 mins) Used when create the Ha Vip.
  • delete - (Defaults to 5 mins) Used when delete the Ha Vip.
  • update - (Defaults to 5 mins) Used when update the Ha Vip.

Import

Vpc Ha Vip can be imported using the id, e.g.

$ terraform import alicloud_vpc_ha_vip.example <id>

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