1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vpc
  6. HaVip
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
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)
    public HaVip(String name, HaVipArgs args)
    public HaVip(String name, HaVipArgs args, CustomResourceOptions options)
    
    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:

    SubnetId string
    Subnet ID to which the HAVIP belongs
    AssociatedEipId string
    ID of the public IP bound to the HAVIP
    AssociatedInstanceIds List<string>
    List of instance IDs bound to the HAVIP
    AssociatedInstanceType string
    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
    HaVipName string
    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
    IpAddress string
    IP address of the HAVIP
    Tags List<Volcengine.HaVipTag>
    SubnetId string
    Subnet ID to which the HAVIP belongs
    AssociatedEipId string
    ID of the public IP bound to the HAVIP
    AssociatedInstanceIds []string
    List of instance IDs bound to the HAVIP
    AssociatedInstanceType string
    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
    HaVipName string
    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
    IpAddress string
    IP address of the HAVIP
    Tags []HaVipTagArgs
    subnetId String
    Subnet ID to which the HAVIP belongs
    associatedEipId String
    ID of the public IP bound to the HAVIP
    associatedInstanceIds List<String>
    List of instance IDs bound to the HAVIP
    associatedInstanceType String
    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
    haVipName String
    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
    ipAddress String
    IP address of the HAVIP
    tags List<HaVipTag>
    subnetId string
    Subnet ID to which the HAVIP belongs
    associatedEipId string
    ID of the public IP bound to the HAVIP
    associatedInstanceIds string[]
    List of instance IDs bound to the HAVIP
    associatedInstanceType string
    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
    haVipName string
    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
    ipAddress string
    IP address of the HAVIP
    tags HaVipTag[]
    subnet_id str
    Subnet ID to which the HAVIP belongs
    associated_eip_id str
    ID of the public IP bound to the HAVIP
    associated_instance_ids Sequence[str]
    List of instance IDs bound to the HAVIP
    associated_instance_type str
    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_name str
    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
    tags Sequence[HaVipTagArgs]
    subnetId String
    Subnet ID to which the HAVIP belongs
    associatedEipId String
    ID of the public IP bound to the HAVIP
    associatedInstanceIds List<String>
    List of instance IDs bound to the HAVIP
    associatedInstanceType String
    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
    haVipName String
    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
    ipAddress String
    IP address of the HAVIP
    tags List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the HaVip resource produces the following output properties:

    AssociatedEipAddress string
    IP address of the public IP bound to the HAVIP
    CreatedAt string
    Creation time of the HAVIP
    HaVipId string
    ID of the HAVIP
    Id string
    The provider-assigned unique ID for this managed resource.
    MasterInstanceId string
    ID of the primary instance bound to the HAVIP
    ProjectName string
    Project name of the HAVIP
    Status string
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    UpdatedAt string
    Last modification time of the HAVIP
    VpcId string
    VPC ID to which the HAVIP belongs
    AssociatedEipAddress string
    IP address of the public IP bound to the HAVIP
    CreatedAt string
    Creation time of the HAVIP
    HaVipId string
    ID of the HAVIP
    Id string
    The provider-assigned unique ID for this managed resource.
    MasterInstanceId string
    ID of the primary instance bound to the HAVIP
    ProjectName string
    Project name of the HAVIP
    Status string
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    UpdatedAt string
    Last modification time of the HAVIP
    VpcId string
    VPC ID to which the HAVIP belongs
    associatedEipAddress String
    IP address of the public IP bound to the HAVIP
    createdAt String
    Creation time of the HAVIP
    haVipId String
    ID of the HAVIP
    id String
    The provider-assigned unique ID for this managed resource.
    masterInstanceId String
    ID of the primary instance bound to the HAVIP
    projectName String
    Project name of the HAVIP
    status String
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    updatedAt String
    Last modification time of the HAVIP
    vpcId String
    VPC ID to which the HAVIP belongs
    associatedEipAddress string
    IP address of the public IP bound to the HAVIP
    createdAt string
    Creation time of the HAVIP
    haVipId string
    ID of the HAVIP
    id string
    The provider-assigned unique ID for this managed resource.
    masterInstanceId string
    ID of the primary instance bound to the HAVIP
    projectName string
    Project name of the HAVIP
    status string
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    updatedAt string
    Last modification time of the HAVIP
    vpcId string
    VPC ID to which the HAVIP belongs
    associated_eip_address str
    IP address of the public IP bound to the HAVIP
    created_at str
    Creation time of the HAVIP
    ha_vip_id str
    ID of the HAVIP
    id str
    The provider-assigned unique ID for this managed resource.
    master_instance_id str
    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
    associatedEipAddress String
    IP address of the public IP bound to the HAVIP
    createdAt String
    Creation time of the HAVIP
    haVipId String
    ID of the HAVIP
    id String
    The provider-assigned unique ID for this managed resource.
    masterInstanceId String
    ID of the primary instance bound to the HAVIP
    projectName String
    Project name of the HAVIP
    status String
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    updatedAt String
    Last modification time of the HAVIP
    vpcId 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) -> HaVip
    func 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.
    The following state arguments are supported:
    AssociatedEipAddress string
    IP address of the public IP bound to the HAVIP
    AssociatedEipId string
    ID of the public IP bound to the HAVIP
    AssociatedInstanceIds List<string>
    List of instance IDs bound to the HAVIP
    AssociatedInstanceType string
    Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
    CreatedAt string
    Creation time of the HAVIP
    Description string
    Description of the HAVIP. Length limit: 0–255 characters
    HaVipId string
    ID of the HAVIP
    HaVipName string
    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
    IpAddress string
    IP address of the HAVIP
    MasterInstanceId string
    ID of the primary instance bound to the HAVIP
    ProjectName string
    Project name of the HAVIP
    Status string
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    SubnetId string
    Subnet ID to which the HAVIP belongs
    Tags List<Volcengine.HaVipTag>
    UpdatedAt string
    Last modification time of the HAVIP
    VpcId string
    VPC ID to which the HAVIP belongs
    AssociatedEipAddress string
    IP address of the public IP bound to the HAVIP
    AssociatedEipId string
    ID of the public IP bound to the HAVIP
    AssociatedInstanceIds []string
    List of instance IDs bound to the HAVIP
    AssociatedInstanceType string
    Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
    CreatedAt string
    Creation time of the HAVIP
    Description string
    Description of the HAVIP. Length limit: 0–255 characters
    HaVipId string
    ID of the HAVIP
    HaVipName string
    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
    IpAddress string
    IP address of the HAVIP
    MasterInstanceId string
    ID of the primary instance bound to the HAVIP
    ProjectName string
    Project name of the HAVIP
    Status string
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    SubnetId string
    Subnet ID to which the HAVIP belongs
    Tags []HaVipTagArgs
    UpdatedAt string
    Last modification time of the HAVIP
    VpcId string
    VPC ID to which the HAVIP belongs
    associatedEipAddress String
    IP address of the public IP bound to the HAVIP
    associatedEipId String
    ID of the public IP bound to the HAVIP
    associatedInstanceIds List<String>
    List of instance IDs bound to the HAVIP
    associatedInstanceType String
    Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
    createdAt String
    Creation time of the HAVIP
    description String
    Description of the HAVIP. Length limit: 0–255 characters
    haVipId String
    ID of the HAVIP
    haVipName String
    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
    ipAddress String
    IP address of the HAVIP
    masterInstanceId String
    ID of the primary instance bound to the HAVIP
    projectName String
    Project name of the HAVIP
    status String
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    subnetId String
    Subnet ID to which the HAVIP belongs
    tags List<HaVipTag>
    updatedAt String
    Last modification time of the HAVIP
    vpcId String
    VPC ID to which the HAVIP belongs
    associatedEipAddress string
    IP address of the public IP bound to the HAVIP
    associatedEipId string
    ID of the public IP bound to the HAVIP
    associatedInstanceIds string[]
    List of instance IDs bound to the HAVIP
    associatedInstanceType string
    Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
    createdAt string
    Creation time of the HAVIP
    description string
    Description of the HAVIP. Length limit: 0–255 characters
    haVipId string
    ID of the HAVIP
    haVipName string
    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
    ipAddress string
    IP address of the HAVIP
    masterInstanceId string
    ID of the primary instance bound to the HAVIP
    projectName string
    Project name of the HAVIP
    status string
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    subnetId string
    Subnet ID to which the HAVIP belongs
    tags HaVipTag[]
    updatedAt string
    Last modification time of the HAVIP
    vpcId string
    VPC ID to which the HAVIP belongs
    associated_eip_address str
    IP address of the public IP bound to the HAVIP
    associated_eip_id str
    ID of the public IP bound to the HAVIP
    associated_instance_ids Sequence[str]
    List of instance IDs bound to the HAVIP
    associated_instance_type str
    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_id str
    ID of the HAVIP
    ha_vip_name str
    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_id str
    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
    tags Sequence[HaVipTagArgs]
    updated_at str
    Last modification time of the HAVIP
    vpc_id str
    VPC ID to which the HAVIP belongs
    associatedEipAddress String
    IP address of the public IP bound to the HAVIP
    associatedEipId String
    ID of the public IP bound to the HAVIP
    associatedInstanceIds List<String>
    List of instance IDs bound to the HAVIP
    associatedInstanceType String
    Instance type bound to the HAVIP. EcsInstance: cloud server instance. NetworkInterface: elastic network interface
    createdAt String
    Creation time of the HAVIP
    description String
    Description of the HAVIP. Length limit: 0–255 characters
    haVipId String
    ID of the HAVIP
    haVipName String
    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
    ipAddress String
    IP address of the HAVIP
    masterInstanceId String
    ID of the primary instance bound to the HAVIP
    projectName String
    Project name of the HAVIP
    status String
    Status of the HAVIP. Available: available. Creating: creating. InUse: in use. Deleting: deleting
    subnetId String
    Subnet ID to which the HAVIP belongs
    tags List<Property Map>
    updatedAt String
    Last modification time of the HAVIP
    vpcId 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 volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.