openstack.loadbalancer.Vip
Explore with Pulumi AI
Manages a V1 load balancer vip resource within OpenStack.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";
const vip1 = new openstack.loadbalancer.Vip("vip_1", {
name: "tf_test_lb_vip",
subnetId: "12345",
protocol: "HTTP",
port: 80,
poolId: "67890",
});
import pulumi
import pulumi_openstack as openstack
vip1 = openstack.loadbalancer.Vip("vip_1",
name="tf_test_lb_vip",
subnet_id="12345",
protocol="HTTP",
port=80,
pool_id="67890")
package main
import (
"github.com/pulumi/pulumi-openstack/sdk/v4/go/openstack/loadbalancer"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := loadbalancer.NewVip(ctx, "vip_1", &loadbalancer.VipArgs{
Name: pulumi.String("tf_test_lb_vip"),
SubnetId: pulumi.String("12345"),
Protocol: pulumi.String("HTTP"),
Port: pulumi.Int(80),
PoolId: pulumi.String("67890"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using OpenStack = Pulumi.OpenStack;
return await Deployment.RunAsync(() =>
{
var vip1 = new OpenStack.LoadBalancer.Vip("vip_1", new()
{
Name = "tf_test_lb_vip",
SubnetId = "12345",
Protocol = "HTTP",
Port = 80,
PoolId = "67890",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.openstack.loadbalancer.Vip;
import com.pulumi.openstack.loadbalancer.VipArgs;
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 vip1 = new Vip("vip1", VipArgs.builder()
.name("tf_test_lb_vip")
.subnetId("12345")
.protocol("HTTP")
.port(80)
.poolId("67890")
.build());
}
}
resources:
vip1:
type: openstack:loadbalancer:Vip
name: vip_1
properties:
name: tf_test_lb_vip
subnetId: '12345'
protocol: HTTP
port: 80
poolId: '67890'
Create Vip Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Vip(name: string, args: VipArgs, opts?: CustomResourceOptions);
@overload
def Vip(resource_name: str,
args: VipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Vip(resource_name: str,
opts: Optional[ResourceOptions] = None,
pool_id: Optional[str] = None,
subnet_id: Optional[str] = None,
protocol: Optional[str] = None,
port: Optional[int] = None,
description: Optional[str] = None,
name: Optional[str] = None,
persistence: Optional[Mapping[str, Any]] = None,
floating_ip: Optional[str] = None,
address: Optional[str] = None,
conn_limit: Optional[int] = None,
region: Optional[str] = None,
admin_state_up: Optional[bool] = None,
tenant_id: Optional[str] = None)
func NewVip(ctx *Context, name string, args VipArgs, opts ...ResourceOption) (*Vip, error)
public Vip(string name, VipArgs args, CustomResourceOptions? opts = null)
type: openstack:loadbalancer:Vip
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 VipArgs
- 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 VipArgs
- 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 VipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VipArgs
- 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 vipResource = new OpenStack.LoadBalancer.Vip("vipResource", new()
{
PoolId = "string",
SubnetId = "string",
Protocol = "string",
Port = 0,
Description = "string",
Name = "string",
Persistence =
{
{ "string", "any" },
},
FloatingIp = "string",
Address = "string",
ConnLimit = 0,
Region = "string",
AdminStateUp = false,
TenantId = "string",
});
example, err := loadbalancer.NewVip(ctx, "vipResource", &loadbalancer.VipArgs{
PoolId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
Protocol: pulumi.String("string"),
Port: pulumi.Int(0),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Persistence: pulumi.Map{
"string": pulumi.Any("any"),
},
FloatingIp: pulumi.String("string"),
Address: pulumi.String("string"),
ConnLimit: pulumi.Int(0),
Region: pulumi.String("string"),
AdminStateUp: pulumi.Bool(false),
TenantId: pulumi.String("string"),
})
var vipResource = new Vip("vipResource", VipArgs.builder()
.poolId("string")
.subnetId("string")
.protocol("string")
.port(0)
.description("string")
.name("string")
.persistence(Map.of("string", "any"))
.floatingIp("string")
.address("string")
.connLimit(0)
.region("string")
.adminStateUp(false)
.tenantId("string")
.build());
vip_resource = openstack.loadbalancer.Vip("vipResource",
pool_id="string",
subnet_id="string",
protocol="string",
port=0,
description="string",
name="string",
persistence={
"string": "any",
},
floating_ip="string",
address="string",
conn_limit=0,
region="string",
admin_state_up=False,
tenant_id="string")
const vipResource = new openstack.loadbalancer.Vip("vipResource", {
poolId: "string",
subnetId: "string",
protocol: "string",
port: 0,
description: "string",
name: "string",
persistence: {
string: "any",
},
floatingIp: "string",
address: "string",
connLimit: 0,
region: "string",
adminStateUp: false,
tenantId: "string",
});
type: openstack:loadbalancer:Vip
properties:
address: string
adminStateUp: false
connLimit: 0
description: string
floatingIp: string
name: string
persistence:
string: any
poolId: string
port: 0
protocol: string
region: string
subnetId: string
tenantId: string
Vip Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Vip resource accepts the following input properties:
- Pool
Id string - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- Port int
- The port on which to listen for client traffic. Changing this creates a new vip.
- Protocol string
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- Subnet
Id string - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- Address string
- The IP address of the vip. Changing this creates a new vip.
- Admin
State boolUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- Conn
Limit int - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- Description string
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- Floating
Ip string - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- Name string
- The name of the vip. Changing this updates the name of the existing vip.
- Persistence Dictionary<string, object>
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- Region string
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - Tenant
Id string - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- Pool
Id string - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- Port int
- The port on which to listen for client traffic. Changing this creates a new vip.
- Protocol string
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- Subnet
Id string - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- Address string
- The IP address of the vip. Changing this creates a new vip.
- Admin
State boolUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- Conn
Limit int - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- Description string
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- Floating
Ip string - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- Name string
- The name of the vip. Changing this updates the name of the existing vip.
- Persistence map[string]interface{}
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- Region string
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - Tenant
Id string - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- pool
Id String - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port Integer
- The port on which to listen for client traffic. Changing this creates a new vip.
- protocol String
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- subnet
Id String - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- address String
- The IP address of the vip. Changing this creates a new vip.
- admin
State BooleanUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn
Limit Integer - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description String
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating
Ip String - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name String
- The name of the vip. Changing this updates the name of the existing vip.
- persistence Map<String,Object>
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- region String
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - tenant
Id String - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- pool
Id string - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port number
- The port on which to listen for client traffic. Changing this creates a new vip.
- protocol string
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- subnet
Id string - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- address string
- The IP address of the vip. Changing this creates a new vip.
- admin
State booleanUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn
Limit number - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description string
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating
Ip string - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name string
- The name of the vip. Changing this updates the name of the existing vip.
- persistence {[key: string]: any}
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- region string
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - tenant
Id string - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- pool_
id str - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port int
- The port on which to listen for client traffic. Changing this creates a new vip.
- protocol str
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- subnet_
id str - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- address str
- The IP address of the vip. Changing this creates a new vip.
- admin_
state_ boolup - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn_
limit int - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description str
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating_
ip str - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name str
- The name of the vip. Changing this updates the name of the existing vip.
- persistence Mapping[str, Any]
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- region str
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - tenant_
id str - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- pool
Id String - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port Number
- The port on which to listen for client traffic. Changing this creates a new vip.
- protocol String
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- subnet
Id String - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- address String
- The IP address of the vip. Changing this creates a new vip.
- admin
State BooleanUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn
Limit Number - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description String
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating
Ip String - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name String
- The name of the vip. Changing this updates the name of the existing vip.
- persistence Map<Any>
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- region String
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - tenant
Id String - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
Outputs
All input properties are implicitly available as output properties. Additionally, the Vip resource produces the following output properties:
Look up Existing Vip Resource
Get an existing Vip 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?: VipState, opts?: CustomResourceOptions): Vip
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
admin_state_up: Optional[bool] = None,
conn_limit: Optional[int] = None,
description: Optional[str] = None,
floating_ip: Optional[str] = None,
name: Optional[str] = None,
persistence: Optional[Mapping[str, Any]] = None,
pool_id: Optional[str] = None,
port: Optional[int] = None,
port_id: Optional[str] = None,
protocol: Optional[str] = None,
region: Optional[str] = None,
subnet_id: Optional[str] = None,
tenant_id: Optional[str] = None) -> Vip
func GetVip(ctx *Context, name string, id IDInput, state *VipState, opts ...ResourceOption) (*Vip, error)
public static Vip Get(string name, Input<string> id, VipState? state, CustomResourceOptions? opts = null)
public static Vip get(String name, Output<String> id, VipState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Address string
- The IP address of the vip. Changing this creates a new vip.
- Admin
State boolUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- Conn
Limit int - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- Description string
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- Floating
Ip string - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- Name string
- The name of the vip. Changing this updates the name of the existing vip.
- Persistence Dictionary<string, object>
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- Pool
Id string - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- Port int
- The port on which to listen for client traffic. Changing this creates a new vip.
- Port
Id string - Port UUID for this VIP at associated floating IP (if any).
- Protocol string
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- Region string
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - Subnet
Id string - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- Tenant
Id string - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- Address string
- The IP address of the vip. Changing this creates a new vip.
- Admin
State boolUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- Conn
Limit int - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- Description string
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- Floating
Ip string - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- Name string
- The name of the vip. Changing this updates the name of the existing vip.
- Persistence map[string]interface{}
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- Pool
Id string - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- Port int
- The port on which to listen for client traffic. Changing this creates a new vip.
- Port
Id string - Port UUID for this VIP at associated floating IP (if any).
- Protocol string
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- Region string
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - Subnet
Id string - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- Tenant
Id string - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- address String
- The IP address of the vip. Changing this creates a new vip.
- admin
State BooleanUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn
Limit Integer - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description String
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating
Ip String - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name String
- The name of the vip. Changing this updates the name of the existing vip.
- persistence Map<String,Object>
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- pool
Id String - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port Integer
- The port on which to listen for client traffic. Changing this creates a new vip.
- port
Id String - Port UUID for this VIP at associated floating IP (if any).
- protocol String
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- region String
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - subnet
Id String - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- tenant
Id String - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- address string
- The IP address of the vip. Changing this creates a new vip.
- admin
State booleanUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn
Limit number - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description string
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating
Ip string - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name string
- The name of the vip. Changing this updates the name of the existing vip.
- persistence {[key: string]: any}
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- pool
Id string - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port number
- The port on which to listen for client traffic. Changing this creates a new vip.
- port
Id string - Port UUID for this VIP at associated floating IP (if any).
- protocol string
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- region string
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - subnet
Id string - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- tenant
Id string - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- address str
- The IP address of the vip. Changing this creates a new vip.
- admin_
state_ boolup - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn_
limit int - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description str
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating_
ip str - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name str
- The name of the vip. Changing this updates the name of the existing vip.
- persistence Mapping[str, Any]
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- pool_
id str - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port int
- The port on which to listen for client traffic. Changing this creates a new vip.
- port_
id str - Port UUID for this VIP at associated floating IP (if any).
- protocol str
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- region str
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - subnet_
id str - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- tenant_
id str - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
- address String
- The IP address of the vip. Changing this creates a new vip.
- admin
State BooleanUp - The administrative state of the vip. Acceptable values are "true" and "false". Changing this value updates the state of the existing vip.
- conn
Limit Number - The maximum number of connections allowed for the vip. Default is -1, meaning no limit. Changing this updates the conn_limit of the existing vip.
- description String
- Human-readable description for the vip. Changing this updates the description of the existing vip.
- floating
Ip String - A Networking Floating IP that will be associated with the vip. The Floating IP must be provisioned already.
- name String
- The name of the vip. Changing this updates the name of the existing vip.
- persistence Map<Any>
- Omit this field to prevent session persistence. The persistence object structure is documented below. Changing this updates the persistence of the existing vip.
- pool
Id String - The ID of the pool with which the vip is associated. Changing this updates the pool_id of the existing vip.
- port Number
- The port on which to listen for client traffic. Changing this creates a new vip.
- port
Id String - Port UUID for this VIP at associated floating IP (if any).
- protocol String
- The protocol - can be either 'TCP, 'HTTP', or HTTPS'. Changing this creates a new vip.
- region String
- The region in which to obtain the V2 Networking client.
A Networking client is needed to create a VIP. If omitted, the
region
argument of the provider is used. Changing this creates a new VIP. - subnet
Id String - The network on which to allocate the vip's address. A tenant can only create vips on networks authorized by policy (e.g. networks that belong to them or networks that are shared). Changing this creates a new vip.
- tenant
Id String - The owner of the vip. Required if admin wants to create a vip member for another tenant. Changing this creates a new vip.
Import
Load Balancer VIPs can be imported using the id
, e.g.
$ pulumi import openstack:loadbalancer/vip:Vip vip_1 50e16b26-89c1-475e-a492-76167182511e
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- OpenStack pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
openstack
Terraform Provider.