ucloud.Lb
Explore with Pulumi AI
Provides a Load Balancer resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ucloud from "@pulumi/ucloud";
const web = new ucloud.Lb("web", {tag: "tf-example"});
import pulumi
import pulumi_ucloud as ucloud
web = ucloud.Lb("web", tag="tf-example")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ucloud/ucloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ucloud.NewLb(ctx, "web", &ucloud.LbArgs{
Tag: pulumi.String("tf-example"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ucloud = Pulumi.Ucloud;
return await Deployment.RunAsync(() =>
{
var web = new Ucloud.Lb("web", new()
{
Tag = "tf-example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ucloud.Lb;
import com.pulumi.ucloud.LbArgs;
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 web = new Lb("web", LbArgs.builder()
.tag("tf-example")
.build());
}
}
resources:
web:
type: ucloud:Lb
properties:
tag: tf-example
Create Lb Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Lb(name: string, args?: LbArgs, opts?: CustomResourceOptions);
@overload
def Lb(resource_name: str,
args: Optional[LbArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Lb(resource_name: str,
opts: Optional[ResourceOptions] = None,
charge_type: Optional[str] = None,
internal: Optional[bool] = None,
lb_id: Optional[str] = None,
listen_type: Optional[str] = None,
name: Optional[str] = None,
remark: Optional[str] = None,
security_group: Optional[str] = None,
subnet_id: Optional[str] = None,
tag: Optional[str] = None,
vpc_id: Optional[str] = None)
func NewLb(ctx *Context, name string, args *LbArgs, opts ...ResourceOption) (*Lb, error)
public Lb(string name, LbArgs? args = null, CustomResourceOptions? opts = null)
type: ucloud:Lb
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 LbArgs
- 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 LbArgs
- 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 LbArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LbArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LbArgs
- 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 lbResource = new Ucloud.Lb("lbResource", new()
{
ChargeType = "string",
Internal = false,
LbId = "string",
ListenType = "string",
Name = "string",
Remark = "string",
SecurityGroup = "string",
SubnetId = "string",
Tag = "string",
VpcId = "string",
});
example, err := ucloud.NewLb(ctx, "lbResource", &ucloud.LbArgs{
ChargeType: pulumi.String("string"),
Internal: pulumi.Bool(false),
LbId: pulumi.String("string"),
ListenType: pulumi.String("string"),
Name: pulumi.String("string"),
Remark: pulumi.String("string"),
SecurityGroup: pulumi.String("string"),
SubnetId: pulumi.String("string"),
Tag: pulumi.String("string"),
VpcId: pulumi.String("string"),
})
var lbResource = new Lb("lbResource", LbArgs.builder()
.chargeType("string")
.internal(false)
.lbId("string")
.listenType("string")
.name("string")
.remark("string")
.securityGroup("string")
.subnetId("string")
.tag("string")
.vpcId("string")
.build());
lb_resource = ucloud.Lb("lbResource",
charge_type="string",
internal=False,
lb_id="string",
listen_type="string",
name="string",
remark="string",
security_group="string",
subnet_id="string",
tag="string",
vpc_id="string")
const lbResource = new ucloud.Lb("lbResource", {
chargeType: "string",
internal: false,
lbId: "string",
listenType: "string",
name: "string",
remark: "string",
securityGroup: "string",
subnetId: "string",
tag: "string",
vpcId: "string",
});
type: ucloud:Lb
properties:
chargeType: string
internal: false
lbId: string
listenType: string
name: string
remark: string
securityGroup: string
subnetId: string
tag: string
vpcId: string
Lb 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 Lb resource accepts the following input properties:
- Charge
Type string - , argument
charge_type
is deprecated for optimizing parameters. - Internal bool
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - Lb
Id string - The ID of the resource load balancer.
- Listen
Type string - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - Name string
- Remark string
- The remarks of the load balancer. (Default:
""
). - Security
Group string - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- Subnet
Id string - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- Tag string
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - Vpc
Id string - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- Charge
Type string - , argument
charge_type
is deprecated for optimizing parameters. - Internal bool
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - Lb
Id string - The ID of the resource load balancer.
- Listen
Type string - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - Name string
- Remark string
- The remarks of the load balancer. (Default:
""
). - Security
Group string - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- Subnet
Id string - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- Tag string
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - Vpc
Id string - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge
Type String - , argument
charge_type
is deprecated for optimizing parameters. - internal Boolean
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - lb
Id String - The ID of the resource load balancer.
- listen
Type String - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name String
- remark String
- The remarks of the load balancer. (Default:
""
). - security
Group String - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet
Id String - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag String
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc
Id String - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge
Type string - , argument
charge_type
is deprecated for optimizing parameters. - internal boolean
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - lb
Id string - The ID of the resource load balancer.
- listen
Type string - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name string
- remark string
- The remarks of the load balancer. (Default:
""
). - security
Group string - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet
Id string - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag string
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc
Id string - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge_
type str - , argument
charge_type
is deprecated for optimizing parameters. - internal bool
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - lb_
id str - The ID of the resource load balancer.
- listen_
type str - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name str
- remark str
- The remarks of the load balancer. (Default:
""
). - security_
group str - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet_
id str - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag str
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc_
id str - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge
Type String - , argument
charge_type
is deprecated for optimizing parameters. - internal Boolean
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - lb
Id String - The ID of the resource load balancer.
- listen
Type String - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name String
- remark String
- The remarks of the load balancer. (Default:
""
). - security
Group String - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet
Id String - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag String
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc
Id String - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
Outputs
All input properties are implicitly available as output properties. Additionally, the Lb resource produces the following output properties:
- Create
Time string - The time of creation for load balancer, formatted in RFC3339 time string.
- Expire
Time string - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Sets List<LbIp Set> - It is a nested type which documented below.
- Private
Ip string - The IP address of intranet IP. It is
""
ifinternal
isfalse
.
- Create
Time string - The time of creation for load balancer, formatted in RFC3339 time string.
- Expire
Time string - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Sets []LbIp Set - It is a nested type which documented below.
- Private
Ip string - The IP address of intranet IP. It is
""
ifinternal
isfalse
.
- create
Time String - The time of creation for load balancer, formatted in RFC3339 time string.
- expire
Time String - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - id String
- The provider-assigned unique ID for this managed resource.
- ip
Sets List<LbIp Set> - It is a nested type which documented below.
- private
Ip String - The IP address of intranet IP. It is
""
ifinternal
isfalse
.
- create
Time string - The time of creation for load balancer, formatted in RFC3339 time string.
- expire
Time string - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - id string
- The provider-assigned unique ID for this managed resource.
- ip
Sets LbIp Set[] - It is a nested type which documented below.
- private
Ip string - The IP address of intranet IP. It is
""
ifinternal
isfalse
.
- create_
time str - The time of creation for load balancer, formatted in RFC3339 time string.
- expire_
time str - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - id str
- The provider-assigned unique ID for this managed resource.
- ip_
sets Sequence[LbIp Set] - It is a nested type which documented below.
- private_
ip str - The IP address of intranet IP. It is
""
ifinternal
isfalse
.
- create
Time String - The time of creation for load balancer, formatted in RFC3339 time string.
- expire
Time String - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - id String
- The provider-assigned unique ID for this managed resource.
- ip
Sets List<Property Map> - It is a nested type which documented below.
- private
Ip String - The IP address of intranet IP. It is
""
ifinternal
isfalse
.
Look up Existing Lb Resource
Get an existing Lb 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?: LbState, opts?: CustomResourceOptions): Lb
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
charge_type: Optional[str] = None,
create_time: Optional[str] = None,
expire_time: Optional[str] = None,
internal: Optional[bool] = None,
ip_sets: Optional[Sequence[LbIpSetArgs]] = None,
lb_id: Optional[str] = None,
listen_type: Optional[str] = None,
name: Optional[str] = None,
private_ip: Optional[str] = None,
remark: Optional[str] = None,
security_group: Optional[str] = None,
subnet_id: Optional[str] = None,
tag: Optional[str] = None,
vpc_id: Optional[str] = None) -> Lb
func GetLb(ctx *Context, name string, id IDInput, state *LbState, opts ...ResourceOption) (*Lb, error)
public static Lb Get(string name, Input<string> id, LbState? state, CustomResourceOptions? opts = null)
public static Lb get(String name, Output<String> id, LbState state, CustomResourceOptions options)
resources: _: type: ucloud:Lb 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.
- Charge
Type string - , argument
charge_type
is deprecated for optimizing parameters. - Create
Time string - The time of creation for load balancer, formatted in RFC3339 time string.
- Expire
Time string - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - Internal bool
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - Ip
Sets List<LbIp Set> - It is a nested type which documented below.
- Lb
Id string - The ID of the resource load balancer.
- Listen
Type string - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - Name string
- Private
Ip string - The IP address of intranet IP. It is
""
ifinternal
isfalse
. - Remark string
- The remarks of the load balancer. (Default:
""
). - Security
Group string - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- Subnet
Id string - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- Tag string
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - Vpc
Id string - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- Charge
Type string - , argument
charge_type
is deprecated for optimizing parameters. - Create
Time string - The time of creation for load balancer, formatted in RFC3339 time string.
- Expire
Time string - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - Internal bool
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - Ip
Sets []LbIp Set Args - It is a nested type which documented below.
- Lb
Id string - The ID of the resource load balancer.
- Listen
Type string - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - Name string
- Private
Ip string - The IP address of intranet IP. It is
""
ifinternal
isfalse
. - Remark string
- The remarks of the load balancer. (Default:
""
). - Security
Group string - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- Subnet
Id string - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- Tag string
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - Vpc
Id string - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge
Type String - , argument
charge_type
is deprecated for optimizing parameters. - create
Time String - The time of creation for load balancer, formatted in RFC3339 time string.
- expire
Time String - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - internal Boolean
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - ip
Sets List<LbIp Set> - It is a nested type which documented below.
- lb
Id String - The ID of the resource load balancer.
- listen
Type String - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name String
- private
Ip String - The IP address of intranet IP. It is
""
ifinternal
isfalse
. - remark String
- The remarks of the load balancer. (Default:
""
). - security
Group String - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet
Id String - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag String
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc
Id String - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge
Type string - , argument
charge_type
is deprecated for optimizing parameters. - create
Time string - The time of creation for load balancer, formatted in RFC3339 time string.
- expire
Time string - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - internal boolean
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - ip
Sets LbIp Set[] - It is a nested type which documented below.
- lb
Id string - The ID of the resource load balancer.
- listen
Type string - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name string
- private
Ip string - The IP address of intranet IP. It is
""
ifinternal
isfalse
. - remark string
- The remarks of the load balancer. (Default:
""
). - security
Group string - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet
Id string - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag string
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc
Id string - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge_
type str - , argument
charge_type
is deprecated for optimizing parameters. - create_
time str - The time of creation for load balancer, formatted in RFC3339 time string.
- expire_
time str - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - internal bool
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - ip_
sets Sequence[LbIp Set Args] - It is a nested type which documented below.
- lb_
id str - The ID of the resource load balancer.
- listen_
type str - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name str
- private_
ip str - The IP address of intranet IP. It is
""
ifinternal
isfalse
. - remark str
- The remarks of the load balancer. (Default:
""
). - security_
group str - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet_
id str - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag str
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc_
id str - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
- charge
Type String - , argument
charge_type
is deprecated for optimizing parameters. - create
Time String - The time of creation for load balancer, formatted in RFC3339 time string.
- expire
Time String - Deprecated attribute
expire_time
is deprecated for optimizing outputs. - internal Boolean
- Indicate whether the load balancer is intranet mode. (Default:
"false"
) - ip
Sets List<Property Map> - It is a nested type which documented below.
- lb
Id String - The ID of the resource load balancer.
- listen
Type String - The type of listener. Possible values are
request_proxy
andpackets_transmit
. Whenpackets_transmit
was specified, you need to config the instances by yourself if the instances attach to the load balancer. You may refer to configuration instruction. - name String
- private
Ip String - The IP address of intranet IP. It is
""
ifinternal
isfalse
. - remark String
- The remarks of the load balancer. (Default:
""
). - security
Group String - The ID of the associated security group. The security_group only takes effect for ULB instances of request_proxy mode and extranet mode at present.
- subnet
Id String - The ID of subnet that intranet load balancer belongs to. This argument is not required if default subnet.
- tag String
- A tag assigned to load balancer, which contains at most 63 characters and only support Chinese, English, numbers, '-', '_', and '.'. If it is not filled in or a empty string is filled in, then default tag will be assigned. (Default:
Default
). - vpc
Id String - The ID of the VPC linked to the Load balancer, This argument is not required if default VPC.
Supporting Types
LbIpSet, LbIpSetArgs
- Internet
Type string - Type of Elastic IP routes.
- Ip string
- Elastic IP address.
- Internet
Type string - Type of Elastic IP routes.
- Ip string
- Elastic IP address.
- internet
Type String - Type of Elastic IP routes.
- ip String
- Elastic IP address.
- internet
Type string - Type of Elastic IP routes.
- ip string
- Elastic IP address.
- internet_
type str - Type of Elastic IP routes.
- ip str
- Elastic IP address.
- internet
Type String - Type of Elastic IP routes.
- ip String
- Elastic IP address.
Import
LB can be imported using the id
, e.g.
$ pulumi import ucloud:index/lb:Lb example ulb-abc123456
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ucloud ucloud/terraform-provider-ucloud
- License
- Notes
- This Pulumi package is based on the
ucloud
Terraform Provider.