published on Thursday, Apr 23, 2026 by Volcengine
published on Thursday, Apr 23, 2026 by Volcengine
A high availability virtual IP (HAVIP) is a private IP resource that can be independently owned, created, or deleted at any time based on business needs. In primary/secondary cluster scenarios, HAVIP is typically used with high availability software (such as Keepalived or Windows Server Failover Cluster) to build high availability primary/secondary services
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const vPCHAVIPDemo = new volcenginecc.vpc.HaVip("VPCHAVIPDemo", {
associatedEipId: "eip-1a1tzpbhmsphc8nvexxxxx",
associatedInstanceIds: [
"eni-btw4pmtcabr45h0b2xxxxx",
"eni-iiotcbjp7r4074o8xxxxx",
"eni-3nrjyim6prm68931ebbxxxxx",
],
associatedInstanceType: "NetworkInterface",
description: "this is a test",
haVipName: "HaVip-test",
ipAddress: "192.***.0.9",
subnetId: "subnet-rrwqhg3qzxfkv0x57xxxxx",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
v_pchavip_demo = volcenginecc.vpc.HaVip("VPCHAVIPDemo",
associated_eip_id="eip-1a1tzpbhmsphc8nvexxxxx",
associated_instance_ids=[
"eni-btw4pmtcabr45h0b2xxxxx",
"eni-iiotcbjp7r4074o8xxxxx",
"eni-3nrjyim6prm68931ebbxxxxx",
],
associated_instance_type="NetworkInterface",
description="this is a test",
ha_vip_name="HaVip-test",
ip_address="192.***.0.9",
subnet_id="subnet-rrwqhg3qzxfkv0x57xxxxx",
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpc.NewHaVip(ctx, "VPCHAVIPDemo", &vpc.HaVipArgs{
AssociatedEipId: pulumi.String("eip-1a1tzpbhmsphc8nvexxxxx"),
AssociatedInstanceIds: pulumi.StringArray{
pulumi.String("eni-btw4pmtcabr45h0b2xxxxx"),
pulumi.String("eni-iiotcbjp7r4074o8xxxxx"),
pulumi.String("eni-3nrjyim6prm68931ebbxxxxx"),
},
AssociatedInstanceType: pulumi.String("NetworkInterface"),
Description: pulumi.String("this is a test"),
HaVipName: pulumi.String("HaVip-test"),
IpAddress: pulumi.String("192.***.0.9"),
SubnetId: pulumi.String("subnet-rrwqhg3qzxfkv0x57xxxxx"),
Tags: vpc.HaVipTagArray{
&vpc.HaVipTagArgs{
Key: pulumi.String("env"),
Value: pulumi.String("test"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var vPCHAVIPDemo = new Volcenginecc.Vpc.HaVip("VPCHAVIPDemo", new()
{
AssociatedEipId = "eip-1a1tzpbhmsphc8nvexxxxx",
AssociatedInstanceIds = new[]
{
"eni-btw4pmtcabr45h0b2xxxxx",
"eni-iiotcbjp7r4074o8xxxxx",
"eni-3nrjyim6prm68931ebbxxxxx",
},
AssociatedInstanceType = "NetworkInterface",
Description = "this is a test",
HaVipName = "HaVip-test",
IpAddress = "192.***.0.9",
SubnetId = "subnet-rrwqhg3qzxfkv0x57xxxxx",
Tags = new[]
{
new Volcenginecc.Vpc.Inputs.HaVipTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.vpc.HaVip;
import com.volcengine.volcenginecc.vpc.HaVipArgs;
import com.pulumi.volcenginecc.vpc.inputs.HaVipTagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var vPCHAVIPDemo = new HaVip("vPCHAVIPDemo", HaVipArgs.builder()
.associatedEipId("eip-1a1tzpbhmsphc8nvexxxxx")
.associatedInstanceIds(
"eni-btw4pmtcabr45h0b2xxxxx",
"eni-iiotcbjp7r4074o8xxxxx",
"eni-3nrjyim6prm68931ebbxxxxx")
.associatedInstanceType("NetworkInterface")
.description("this is a test")
.haVipName("HaVip-test")
.ipAddress("192.***.0.9")
.subnetId("subnet-rrwqhg3qzxfkv0x57xxxxx")
.tags(HaVipTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
vPCHAVIPDemo:
type: volcenginecc:vpc:HaVip
name: VPCHAVIPDemo
properties:
associatedEipId: eip-1a1tzpbhmsphc8nvexxxxx
associatedInstanceIds:
- eni-btw4pmtcabr45h0b2xxxxx
- eni-iiotcbjp7r4074o8xxxxx
- eni-3nrjyim6prm68931ebbxxxxx
associatedInstanceType: NetworkInterface
description: this is a test
haVipName: HaVip-test
ipAddress: 192.***.0.9
subnetId: subnet-rrwqhg3qzxfkv0x57xxxxx
tags:
- key: env
value: test
Create HaVip Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HaVip(name: string, args: HaVipArgs, opts?: CustomResourceOptions);@overload
def HaVip(resource_name: str,
args: HaVipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HaVip(resource_name: str,
opts: Optional[ResourceOptions] = None,
subnet_id: Optional[str] = None,
associated_eip_id: Optional[str] = None,
associated_instance_ids: Optional[Sequence[str]] = None,
associated_instance_type: Optional[str] = None,
description: Optional[str] = None,
ha_vip_name: Optional[str] = None,
ip_address: Optional[str] = None,
tags: Optional[Sequence[HaVipTagArgs]] = None)func NewHaVip(ctx *Context, name string, args HaVipArgs, opts ...ResourceOption) (*HaVip, error)public HaVip(string name, HaVipArgs args, CustomResourceOptions? opts = null)type: volcenginecc:vpc:HaVip
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args HaVipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args HaVipArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args HaVipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HaVipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HaVipArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var haVipResource = new Volcenginecc.Vpc.HaVip("haVipResource", new()
{
SubnetId = "string",
AssociatedEipId = "string",
AssociatedInstanceIds = new[]
{
"string",
},
AssociatedInstanceType = "string",
Description = "string",
HaVipName = "string",
IpAddress = "string",
Tags = new[]
{
new Volcenginecc.Vpc.Inputs.HaVipTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vpc.NewHaVip(ctx, "haVipResource", &vpc.HaVipArgs{
SubnetId: pulumi.String("string"),
AssociatedEipId: pulumi.String("string"),
AssociatedInstanceIds: pulumi.StringArray{
pulumi.String("string"),
},
AssociatedInstanceType: pulumi.String("string"),
Description: pulumi.String("string"),
HaVipName: pulumi.String("string"),
IpAddress: pulumi.String("string"),
Tags: vpc.HaVipTagArray{
&vpc.HaVipTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var haVipResource = new HaVip("haVipResource", HaVipArgs.builder()
.subnetId("string")
.associatedEipId("string")
.associatedInstanceIds("string")
.associatedInstanceType("string")
.description("string")
.haVipName("string")
.ipAddress("string")
.tags(HaVipTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
ha_vip_resource = volcenginecc.vpc.HaVip("haVipResource",
subnet_id="string",
associated_eip_id="string",
associated_instance_ids=["string"],
associated_instance_type="string",
description="string",
ha_vip_name="string",
ip_address="string",
tags=[{
"key": "string",
"value": "string",
}])
const haVipResource = new volcenginecc.vpc.HaVip("haVipResource", {
subnetId: "string",
associatedEipId: "string",
associatedInstanceIds: ["string"],
associatedInstanceType: "string",
description: "string",
haVipName: "string",
ipAddress: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: volcenginecc:vpc:HaVip
properties:
associatedEipId: string
associatedInstanceIds:
- string
associatedInstanceType: string
description: string
haVipName: string
ipAddress: string
subnetId: string
tags:
- key: string
value: string
HaVip Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The HaVip resource accepts the following input properties:
- Subnet
Id string - Subnet ID to which the HAVIP belongs
- Associated
Eip stringId - ID of the public IP bound to the HAVIP
- Associated
Instance List<string>Ids - List of instance IDs bound to the HAVIP
- Associated
Instance stringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- Description string
- Description of the HAVIP. Length limit: 0–255 characters
- Ha
Vip stringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- Ip
Address string - IP address of the HAVIP
-
List<Volcengine.
Ha Vip Tag>
- Subnet
Id string - Subnet ID to which the HAVIP belongs
- Associated
Eip stringId - ID of the public IP bound to the HAVIP
- Associated
Instance []stringIds - List of instance IDs bound to the HAVIP
- Associated
Instance stringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- Description string
- Description of the HAVIP. Length limit: 0–255 characters
- Ha
Vip stringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- Ip
Address string - IP address of the HAVIP
-
[]Ha
Vip Tag Args
- subnet
Id String - Subnet ID to which the HAVIP belongs
- associated
Eip StringId - ID of the public IP bound to the HAVIP
- associated
Instance List<String>Ids - List of instance IDs bound to the HAVIP
- associated
Instance StringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- description String
- Description of the HAVIP. Length limit: 0–255 characters
- ha
Vip StringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip
Address String - IP address of the HAVIP
-
List<Ha
Vip Tag>
- subnet
Id string - Subnet ID to which the HAVIP belongs
- associated
Eip stringId - ID of the public IP bound to the HAVIP
- associated
Instance string[]Ids - List of instance IDs bound to the HAVIP
- associated
Instance stringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- description string
- Description of the HAVIP. Length limit: 0–255 characters
- ha
Vip stringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip
Address string - IP address of the HAVIP
-
Ha
Vip Tag[]
- subnet_
id str - Subnet ID to which the HAVIP belongs
- associated_
eip_ strid - ID of the public IP bound to the HAVIP
- associated_
instance_ Sequence[str]ids - List of instance IDs bound to the HAVIP
- associated_
instance_ strtype - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- description str
- Description of the HAVIP. Length limit: 0–255 characters
- ha_
vip_ strname - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip_
address str - IP address of the HAVIP
-
Sequence[Ha
Vip Tag Args]
- subnet
Id String - Subnet ID to which the HAVIP belongs
- associated
Eip StringId - ID of the public IP bound to the HAVIP
- associated
Instance List<String>Ids - List of instance IDs bound to the HAVIP
- associated
Instance StringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- description String
- Description of the HAVIP. Length limit: 0–255 characters
- ha
Vip StringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip
Address String - IP address of the HAVIP
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the HaVip resource produces the following output properties:
- Associated
Eip stringAddress - IP address of the public IP bound to the HAVIP
- Created
At string - Creation time of the HAVIP
- Ha
Vip stringId - ID of the HAVIP
- Id string
- The provider-assigned unique ID for this managed resource.
- Master
Instance stringId - ID of the primary instance bound to the HAVIP
- Project
Name string - Project name of the HAVIP
- Status string
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- Updated
At string - Last modification time of the HAVIP
- Vpc
Id string - VPC ID to which the HAVIP belongs
- Associated
Eip stringAddress - IP address of the public IP bound to the HAVIP
- Created
At string - Creation time of the HAVIP
- Ha
Vip stringId - ID of the HAVIP
- Id string
- The provider-assigned unique ID for this managed resource.
- Master
Instance stringId - ID of the primary instance bound to the HAVIP
- Project
Name string - Project name of the HAVIP
- Status string
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- Updated
At string - Last modification time of the HAVIP
- Vpc
Id string - VPC ID to which the HAVIP belongs
- associated
Eip StringAddress - IP address of the public IP bound to the HAVIP
- created
At String - Creation time of the HAVIP
- ha
Vip StringId - ID of the HAVIP
- id String
- The provider-assigned unique ID for this managed resource.
- master
Instance StringId - ID of the primary instance bound to the HAVIP
- project
Name String - Project name of the HAVIP
- status String
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- updated
At String - Last modification time of the HAVIP
- vpc
Id String - VPC ID to which the HAVIP belongs
- associated
Eip stringAddress - IP address of the public IP bound to the HAVIP
- created
At string - Creation time of the HAVIP
- ha
Vip stringId - ID of the HAVIP
- id string
- The provider-assigned unique ID for this managed resource.
- master
Instance stringId - ID of the primary instance bound to the HAVIP
- project
Name string - Project name of the HAVIP
- status string
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- updated
At string - Last modification time of the HAVIP
- vpc
Id string - VPC ID to which the HAVIP belongs
- associated_
eip_ straddress - IP address of the public IP bound to the HAVIP
- created_
at str - Creation time of the HAVIP
- ha_
vip_ strid - ID of the HAVIP
- id str
- The provider-assigned unique ID for this managed resource.
- master_
instance_ strid - ID of the primary instance bound to the HAVIP
- project_
name str - Project name of the HAVIP
- status str
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- updated_
at str - Last modification time of the HAVIP
- vpc_
id str - VPC ID to which the HAVIP belongs
- associated
Eip StringAddress - IP address of the public IP bound to the HAVIP
- created
At String - Creation time of the HAVIP
- ha
Vip StringId - ID of the HAVIP
- id String
- The provider-assigned unique ID for this managed resource.
- master
Instance StringId - ID of the primary instance bound to the HAVIP
- project
Name String - Project name of the HAVIP
- status String
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- updated
At String - Last modification time of the HAVIP
- vpc
Id String - VPC ID to which the HAVIP belongs
Look up Existing HaVip Resource
Get an existing HaVip resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: HaVipState, opts?: CustomResourceOptions): HaVip@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
associated_eip_address: Optional[str] = None,
associated_eip_id: Optional[str] = None,
associated_instance_ids: Optional[Sequence[str]] = None,
associated_instance_type: Optional[str] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
ha_vip_id: Optional[str] = None,
ha_vip_name: Optional[str] = None,
ip_address: Optional[str] = None,
master_instance_id: Optional[str] = None,
project_name: Optional[str] = None,
status: Optional[str] = None,
subnet_id: Optional[str] = None,
tags: Optional[Sequence[HaVipTagArgs]] = None,
updated_at: Optional[str] = None,
vpc_id: Optional[str] = None) -> HaVipfunc GetHaVip(ctx *Context, name string, id IDInput, state *HaVipState, opts ...ResourceOption) (*HaVip, error)public static HaVip Get(string name, Input<string> id, HaVipState? state, CustomResourceOptions? opts = null)public static HaVip get(String name, Output<String> id, HaVipState state, CustomResourceOptions options)resources: _: type: volcenginecc:vpc:HaVip get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Associated
Eip stringAddress - IP address of the public IP bound to the HAVIP
- Associated
Eip stringId - ID of the public IP bound to the HAVIP
- Associated
Instance List<string>Ids - List of instance IDs bound to the HAVIP
- Associated
Instance stringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- Created
At string - Creation time of the HAVIP
- Description string
- Description of the HAVIP. Length limit: 0–255 characters
- Ha
Vip stringId - ID of the HAVIP
- Ha
Vip stringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- Ip
Address string - IP address of the HAVIP
- Master
Instance stringId - ID of the primary instance bound to the HAVIP
- Project
Name string - Project name of the HAVIP
- Status string
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- Subnet
Id string - Subnet ID to which the HAVIP belongs
-
List<Volcengine.
Ha Vip Tag> - Updated
At string - Last modification time of the HAVIP
- Vpc
Id string - VPC ID to which the HAVIP belongs
- Associated
Eip stringAddress - IP address of the public IP bound to the HAVIP
- Associated
Eip stringId - ID of the public IP bound to the HAVIP
- Associated
Instance []stringIds - List of instance IDs bound to the HAVIP
- Associated
Instance stringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- Created
At string - Creation time of the HAVIP
- Description string
- Description of the HAVIP. Length limit: 0–255 characters
- Ha
Vip stringId - ID of the HAVIP
- Ha
Vip stringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- Ip
Address string - IP address of the HAVIP
- Master
Instance stringId - ID of the primary instance bound to the HAVIP
- Project
Name string - Project name of the HAVIP
- Status string
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- Subnet
Id string - Subnet ID to which the HAVIP belongs
-
[]Ha
Vip Tag Args - Updated
At string - Last modification time of the HAVIP
- Vpc
Id string - VPC ID to which the HAVIP belongs
- associated
Eip StringAddress - IP address of the public IP bound to the HAVIP
- associated
Eip StringId - ID of the public IP bound to the HAVIP
- associated
Instance List<String>Ids - List of instance IDs bound to the HAVIP
- associated
Instance StringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- created
At String - Creation time of the HAVIP
- description String
- Description of the HAVIP. Length limit: 0–255 characters
- ha
Vip StringId - ID of the HAVIP
- ha
Vip StringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip
Address String - IP address of the HAVIP
- master
Instance StringId - ID of the primary instance bound to the HAVIP
- project
Name String - Project name of the HAVIP
- status String
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- subnet
Id String - Subnet ID to which the HAVIP belongs
-
List<Ha
Vip Tag> - updated
At String - Last modification time of the HAVIP
- vpc
Id String - VPC ID to which the HAVIP belongs
- associated
Eip stringAddress - IP address of the public IP bound to the HAVIP
- associated
Eip stringId - ID of the public IP bound to the HAVIP
- associated
Instance string[]Ids - List of instance IDs bound to the HAVIP
- associated
Instance stringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- created
At string - Creation time of the HAVIP
- description string
- Description of the HAVIP. Length limit: 0–255 characters
- ha
Vip stringId - ID of the HAVIP
- ha
Vip stringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip
Address string - IP address of the HAVIP
- master
Instance stringId - ID of the primary instance bound to the HAVIP
- project
Name string - Project name of the HAVIP
- status string
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- subnet
Id string - Subnet ID to which the HAVIP belongs
-
Ha
Vip Tag[] - updated
At string - Last modification time of the HAVIP
- vpc
Id string - VPC ID to which the HAVIP belongs
- associated_
eip_ straddress - IP address of the public IP bound to the HAVIP
- associated_
eip_ strid - ID of the public IP bound to the HAVIP
- associated_
instance_ Sequence[str]ids - List of instance IDs bound to the HAVIP
- associated_
instance_ strtype - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- created_
at str - Creation time of the HAVIP
- description str
- Description of the HAVIP. Length limit: 0–255 characters
- ha_
vip_ strid - ID of the HAVIP
- ha_
vip_ strname - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip_
address str - IP address of the HAVIP
- master_
instance_ strid - ID of the primary instance bound to the HAVIP
- project_
name str - Project name of the HAVIP
- status str
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- subnet_
id str - Subnet ID to which the HAVIP belongs
-
Sequence[Ha
Vip Tag Args] - updated_
at str - Last modification time of the HAVIP
- vpc_
id str - VPC ID to which the HAVIP belongs
- associated
Eip StringAddress - IP address of the public IP bound to the HAVIP
- associated
Eip StringId - ID of the public IP bound to the HAVIP
- associated
Instance List<String>Ids - List of instance IDs bound to the HAVIP
- associated
Instance StringType - Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
- created
At String - Creation time of the HAVIP
- description String
- Description of the HAVIP. Length limit: 0–255 characters
- ha
Vip StringId - ID of the HAVIP
- ha
Vip StringName - Name of the HAVIP. Must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 0–128 characters
- ip
Address String - IP address of the HAVIP
- master
Instance StringId - ID of the primary instance bound to the HAVIP
- project
Name String - Project name of the HAVIP
- status String
- Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
- subnet
Id String - Subnet ID to which the HAVIP belongs
- List<Property Map>
- updated
At String - Last modification time of the HAVIP
- vpc
Id String - VPC ID to which the HAVIP belongs
Supporting Types
HaVipTag, HaVipTagArgs
- Key string
- Tag key for user tags. Length range: 1–128 characters. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). If the tag key starts or ends with a space, the system automatically removes it
- Value string
- Tag value for user tags. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case sensitive. If the tag value starts or ends with a space, the system automatically removes it
- Key string
- Tag key for user tags. Length range: 1–128 characters. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). If the tag key starts or ends with a space, the system automatically removes it
- Value string
- Tag value for user tags. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case sensitive. If the tag value starts or ends with a space, the system automatically removes it
- key String
- Tag key for user tags. Length range: 1–128 characters. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). If the tag key starts or ends with a space, the system automatically removes it
- value String
- Tag value for user tags. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case sensitive. If the tag value starts or ends with a space, the system automatically removes it
- key string
- Tag key for user tags. Length range: 1–128 characters. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). If the tag key starts or ends with a space, the system automatically removes it
- value string
- Tag value for user tags. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case sensitive. If the tag value starts or ends with a space, the system automatically removes it
- key str
- Tag key for user tags. Length range: 1–128 characters. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). If the tag key starts or ends with a space, the system automatically removes it
- value str
- Tag value for user tags. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case sensitive. If the tag value starts or ends with a space, the system automatically removes it
- key String
- Tag key for user tags. Length range: 1–128 characters. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). If the tag key starts or ends with a space, the system automatically removes it
- value String
- Tag value for user tags. Supports input of characters in any language, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case sensitive. If the tag value starts or ends with a space, the system automatically removes it
Import
$ pulumi import volcenginecc:vpc/haVip:HaVip example "ha_vip_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Apr 23, 2026 by Volcengine
