edgecenter.Loadbalancer
Explore with Pulumi AI
Represent load balancer
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as edgecenter from "@pulumi/edgecenter";
const lb = new edgecenter.Loadbalancer("lb", {
flavor: "lb1-1-2",
listener: {
name: "test",
protocol: "HTTP",
protocolPort: 80,
},
projectId: 1,
regionId: 1,
});
import pulumi
import pulumi_edgecenter as edgecenter
lb = edgecenter.Loadbalancer("lb",
flavor="lb1-1-2",
listener={
"name": "test",
"protocol": "HTTP",
"protocol_port": 80,
},
project_id=1,
region_id=1)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := edgecenter.NewLoadbalancer(ctx, "lb", &edgecenter.LoadbalancerArgs{
Flavor: pulumi.String("lb1-1-2"),
Listener: &edgecenter.LoadbalancerListenerArgs{
Name: pulumi.String("test"),
Protocol: pulumi.String("HTTP"),
ProtocolPort: pulumi.Float64(80),
},
ProjectId: pulumi.Float64(1),
RegionId: pulumi.Float64(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Edgecenter = Pulumi.Edgecenter;
return await Deployment.RunAsync(() =>
{
var lb = new Edgecenter.Loadbalancer("lb", new()
{
Flavor = "lb1-1-2",
Listener = new Edgecenter.Inputs.LoadbalancerListenerArgs
{
Name = "test",
Protocol = "HTTP",
ProtocolPort = 80,
},
ProjectId = 1,
RegionId = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.edgecenter.Loadbalancer;
import com.pulumi.edgecenter.LoadbalancerArgs;
import com.pulumi.edgecenter.inputs.LoadbalancerListenerArgs;
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 lb = new Loadbalancer("lb", LoadbalancerArgs.builder()
.flavor("lb1-1-2")
.listener(LoadbalancerListenerArgs.builder()
.name("test")
.protocol("HTTP")
.protocolPort(80)
.build())
.projectId(1)
.regionId(1)
.build());
}
}
resources:
lb:
type: edgecenter:Loadbalancer
properties:
flavor: lb1-1-2
# when upgrading to version 0.2.28 nested listener max length reduced to 1
# //that mean, if you had more than one nested listener and removed them from
# //schema they not delete in the cloud. User has to delete it manually and
# //recreate as edgecenter_lblistener resource
listener:
name: test
protocol: HTTP
protocolPort: 80
projectId: 1
regionId: 1
Create Loadbalancer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Loadbalancer(name: string, args: LoadbalancerArgs, opts?: CustomResourceOptions);
@overload
def Loadbalancer(resource_name: str,
args: LoadbalancerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Loadbalancer(resource_name: str,
opts: Optional[ResourceOptions] = None,
listener: Optional[LoadbalancerListenerArgs] = None,
project_id: Optional[float] = None,
last_updated: Optional[str] = None,
loadbalancer_id: Optional[str] = None,
metadata_map: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
flavor: Optional[str] = None,
project_name: Optional[str] = None,
region_id: Optional[float] = None,
region_name: Optional[str] = None,
timeouts: Optional[LoadbalancerTimeoutsArgs] = None,
vip_network_id: Optional[str] = None,
vip_subnet_id: Optional[str] = None)
func NewLoadbalancer(ctx *Context, name string, args LoadbalancerArgs, opts ...ResourceOption) (*Loadbalancer, error)
public Loadbalancer(string name, LoadbalancerArgs args, CustomResourceOptions? opts = null)
public Loadbalancer(String name, LoadbalancerArgs args)
public Loadbalancer(String name, LoadbalancerArgs args, CustomResourceOptions options)
type: edgecenter:Loadbalancer
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 LoadbalancerArgs
- 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 LoadbalancerArgs
- 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 LoadbalancerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LoadbalancerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LoadbalancerArgs
- 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 loadbalancerResource = new Edgecenter.Loadbalancer("loadbalancerResource", new()
{
Listener = new Edgecenter.Inputs.LoadbalancerListenerArgs
{
Name = "string",
Protocol = "string",
ProtocolPort = 0,
Certificate = "string",
CertificateChain = "string",
Id = "string",
InsertXForwarded = false,
PrivateKey = "string",
SecretId = "string",
SniSecretIds = new[]
{
"string",
},
},
ProjectId = 0,
LastUpdated = "string",
LoadbalancerId = "string",
MetadataMap =
{
{ "string", "string" },
},
Name = "string",
Flavor = "string",
ProjectName = "string",
RegionId = 0,
RegionName = "string",
Timeouts = new Edgecenter.Inputs.LoadbalancerTimeoutsArgs
{
Create = "string",
Delete = "string",
},
VipNetworkId = "string",
VipSubnetId = "string",
});
example, err := edgecenter.NewLoadbalancer(ctx, "loadbalancerResource", &edgecenter.LoadbalancerArgs{
Listener: &edgecenter.LoadbalancerListenerArgs{
Name: pulumi.String("string"),
Protocol: pulumi.String("string"),
ProtocolPort: pulumi.Float64(0),
Certificate: pulumi.String("string"),
CertificateChain: pulumi.String("string"),
Id: pulumi.String("string"),
InsertXForwarded: pulumi.Bool(false),
PrivateKey: pulumi.String("string"),
SecretId: pulumi.String("string"),
SniSecretIds: pulumi.StringArray{
pulumi.String("string"),
},
},
ProjectId: pulumi.Float64(0),
LastUpdated: pulumi.String("string"),
LoadbalancerId: pulumi.String("string"),
MetadataMap: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
Flavor: pulumi.String("string"),
ProjectName: pulumi.String("string"),
RegionId: pulumi.Float64(0),
RegionName: pulumi.String("string"),
Timeouts: &edgecenter.LoadbalancerTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
VipNetworkId: pulumi.String("string"),
VipSubnetId: pulumi.String("string"),
})
var loadbalancerResource = new Loadbalancer("loadbalancerResource", LoadbalancerArgs.builder()
.listener(LoadbalancerListenerArgs.builder()
.name("string")
.protocol("string")
.protocolPort(0)
.certificate("string")
.certificateChain("string")
.id("string")
.insertXForwarded(false)
.privateKey("string")
.secretId("string")
.sniSecretIds("string")
.build())
.projectId(0)
.lastUpdated("string")
.loadbalancerId("string")
.metadataMap(Map.of("string", "string"))
.name("string")
.flavor("string")
.projectName("string")
.regionId(0)
.regionName("string")
.timeouts(LoadbalancerTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.vipNetworkId("string")
.vipSubnetId("string")
.build());
loadbalancer_resource = edgecenter.Loadbalancer("loadbalancerResource",
listener={
"name": "string",
"protocol": "string",
"protocol_port": 0,
"certificate": "string",
"certificate_chain": "string",
"id": "string",
"insert_x_forwarded": False,
"private_key": "string",
"secret_id": "string",
"sni_secret_ids": ["string"],
},
project_id=0,
last_updated="string",
loadbalancer_id="string",
metadata_map={
"string": "string",
},
name="string",
flavor="string",
project_name="string",
region_id=0,
region_name="string",
timeouts={
"create": "string",
"delete": "string",
},
vip_network_id="string",
vip_subnet_id="string")
const loadbalancerResource = new edgecenter.Loadbalancer("loadbalancerResource", {
listener: {
name: "string",
protocol: "string",
protocolPort: 0,
certificate: "string",
certificateChain: "string",
id: "string",
insertXForwarded: false,
privateKey: "string",
secretId: "string",
sniSecretIds: ["string"],
},
projectId: 0,
lastUpdated: "string",
loadbalancerId: "string",
metadataMap: {
string: "string",
},
name: "string",
flavor: "string",
projectName: "string",
regionId: 0,
regionName: "string",
timeouts: {
create: "string",
"delete": "string",
},
vipNetworkId: "string",
vipSubnetId: "string",
});
type: edgecenter:Loadbalancer
properties:
flavor: string
lastUpdated: string
listener:
certificate: string
certificateChain: string
id: string
insertXForwarded: false
name: string
privateKey: string
protocol: string
protocolPort: 0
secretId: string
sniSecretIds:
- string
loadbalancerId: string
metadataMap:
string: string
name: string
projectId: 0
projectName: string
regionId: 0
regionName: string
timeouts:
create: string
delete: string
vipNetworkId: string
vipSubnetId: string
Loadbalancer 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 Loadbalancer resource accepts the following input properties:
- Listener
Loadbalancer
Listener - Flavor string
- Last
Updated string - The timestamp of the last update (use with update context).
- Loadbalancer
Id string - The ID of this resource.
- Metadata
Map Dictionary<string, string> - A map containing metadata, for example tags.
- Name string
- The name of the load balancer.
- Project
Id double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Timeouts
Loadbalancer
Timeouts - Vip
Network stringId - Vip
Subnet stringId
- Listener
Loadbalancer
Listener Args - Flavor string
- Last
Updated string - The timestamp of the last update (use with update context).
- Loadbalancer
Id string - The ID of this resource.
- Metadata
Map map[string]string - A map containing metadata, for example tags.
- Name string
- The name of the load balancer.
- Project
Id float64 - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id float64 - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Timeouts
Loadbalancer
Timeouts Args - Vip
Network stringId - Vip
Subnet stringId
- listener
Loadbalancer
Listener - flavor String
- last
Updated String - The timestamp of the last update (use with update context).
- loadbalancer
Id String - The ID of this resource.
- metadata
Map Map<String,String> - A map containing metadata, for example tags.
- name String
- The name of the load balancer.
- project
Id Double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Loadbalancer
Timeouts - vip
Network StringId - vip
Subnet StringId
- listener
Loadbalancer
Listener - flavor string
- last
Updated string - The timestamp of the last update (use with update context).
- loadbalancer
Id string - The ID of this resource.
- metadata
Map {[key: string]: string} - A map containing metadata, for example tags.
- name string
- The name of the load balancer.
- project
Id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Loadbalancer
Timeouts - vip
Network stringId - vip
Subnet stringId
- listener
Loadbalancer
Listener Args - flavor str
- last_
updated str - The timestamp of the last update (use with update context).
- loadbalancer_
id str - The ID of this resource.
- metadata_
map Mapping[str, str] - A map containing metadata, for example tags.
- name str
- The name of the load balancer.
- project_
id float - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name str - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id float - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name str - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Loadbalancer
Timeouts Args - vip_
network_ strid - vip_
subnet_ strid
- listener Property Map
- flavor String
- last
Updated String - The timestamp of the last update (use with update context).
- loadbalancer
Id String - The ID of this resource.
- metadata
Map Map<String> - A map containing metadata, for example tags.
- name String
- The name of the load balancer.
- project
Id Number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts Property Map
- vip
Network StringId - vip
Subnet StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the Loadbalancer resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Read List<LoadbalancerOnlies Metadata Read Only> - A list of read-only metadata items, e.g. tags.
- Vip
Address string - Load balancer IP address
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Read []LoadbalancerOnlies Metadata Read Only - A list of read-only metadata items, e.g. tags.
- Vip
Address string - Load balancer IP address
- id String
- The provider-assigned unique ID for this managed resource.
- metadata
Read List<LoadbalancerOnlies Metadata Read Only> - A list of read-only metadata items, e.g. tags.
- vip
Address String - Load balancer IP address
- id string
- The provider-assigned unique ID for this managed resource.
- metadata
Read LoadbalancerOnlies Metadata Read Only[] - A list of read-only metadata items, e.g. tags.
- vip
Address string - Load balancer IP address
- id str
- The provider-assigned unique ID for this managed resource.
- metadata_
read_ Sequence[Loadbalanceronlies Metadata Read Only] - A list of read-only metadata items, e.g. tags.
- vip_
address str - Load balancer IP address
- id String
- The provider-assigned unique ID for this managed resource.
- metadata
Read List<Property Map>Onlies - A list of read-only metadata items, e.g. tags.
- vip
Address String - Load balancer IP address
Look up Existing Loadbalancer Resource
Get an existing Loadbalancer 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?: LoadbalancerState, opts?: CustomResourceOptions): Loadbalancer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
flavor: Optional[str] = None,
last_updated: Optional[str] = None,
listener: Optional[LoadbalancerListenerArgs] = None,
loadbalancer_id: Optional[str] = None,
metadata_map: Optional[Mapping[str, str]] = None,
metadata_read_onlies: Optional[Sequence[LoadbalancerMetadataReadOnlyArgs]] = None,
name: Optional[str] = None,
project_id: Optional[float] = None,
project_name: Optional[str] = None,
region_id: Optional[float] = None,
region_name: Optional[str] = None,
timeouts: Optional[LoadbalancerTimeoutsArgs] = None,
vip_address: Optional[str] = None,
vip_network_id: Optional[str] = None,
vip_subnet_id: Optional[str] = None) -> Loadbalancer
func GetLoadbalancer(ctx *Context, name string, id IDInput, state *LoadbalancerState, opts ...ResourceOption) (*Loadbalancer, error)
public static Loadbalancer Get(string name, Input<string> id, LoadbalancerState? state, CustomResourceOptions? opts = null)
public static Loadbalancer get(String name, Output<String> id, LoadbalancerState state, CustomResourceOptions options)
resources: _: type: edgecenter:Loadbalancer 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.
- Flavor string
- Last
Updated string - The timestamp of the last update (use with update context).
- Listener
Loadbalancer
Listener - Loadbalancer
Id string - The ID of this resource.
- Metadata
Map Dictionary<string, string> - A map containing metadata, for example tags.
- Metadata
Read List<LoadbalancerOnlies Metadata Read Only> - A list of read-only metadata items, e.g. tags.
- Name string
- The name of the load balancer.
- Project
Id double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Timeouts
Loadbalancer
Timeouts - Vip
Address string - Load balancer IP address
- Vip
Network stringId - Vip
Subnet stringId
- Flavor string
- Last
Updated string - The timestamp of the last update (use with update context).
- Listener
Loadbalancer
Listener Args - Loadbalancer
Id string - The ID of this resource.
- Metadata
Map map[string]string - A map containing metadata, for example tags.
- Metadata
Read []LoadbalancerOnlies Metadata Read Only Args - A list of read-only metadata items, e.g. tags.
- Name string
- The name of the load balancer.
- Project
Id float64 - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id float64 - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Timeouts
Loadbalancer
Timeouts Args - Vip
Address string - Load balancer IP address
- Vip
Network stringId - Vip
Subnet stringId
- flavor String
- last
Updated String - The timestamp of the last update (use with update context).
- listener
Loadbalancer
Listener - loadbalancer
Id String - The ID of this resource.
- metadata
Map Map<String,String> - A map containing metadata, for example tags.
- metadata
Read List<LoadbalancerOnlies Metadata Read Only> - A list of read-only metadata items, e.g. tags.
- name String
- The name of the load balancer.
- project
Id Double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Loadbalancer
Timeouts - vip
Address String - Load balancer IP address
- vip
Network StringId - vip
Subnet StringId
- flavor string
- last
Updated string - The timestamp of the last update (use with update context).
- listener
Loadbalancer
Listener - loadbalancer
Id string - The ID of this resource.
- metadata
Map {[key: string]: string} - A map containing metadata, for example tags.
- metadata
Read LoadbalancerOnlies Metadata Read Only[] - A list of read-only metadata items, e.g. tags.
- name string
- The name of the load balancer.
- project
Id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Loadbalancer
Timeouts - vip
Address string - Load balancer IP address
- vip
Network stringId - vip
Subnet stringId
- flavor str
- last_
updated str - The timestamp of the last update (use with update context).
- listener
Loadbalancer
Listener Args - loadbalancer_
id str - The ID of this resource.
- metadata_
map Mapping[str, str] - A map containing metadata, for example tags.
- metadata_
read_ Sequence[Loadbalanceronlies Metadata Read Only Args] - A list of read-only metadata items, e.g. tags.
- name str
- The name of the load balancer.
- project_
id float - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name str - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id float - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name str - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Loadbalancer
Timeouts Args - vip_
address str - Load balancer IP address
- vip_
network_ strid - vip_
subnet_ strid
- flavor String
- last
Updated String - The timestamp of the last update (use with update context).
- listener Property Map
- loadbalancer
Id String - The ID of this resource.
- metadata
Map Map<String> - A map containing metadata, for example tags.
- metadata
Read List<Property Map>Onlies - A list of read-only metadata items, e.g. tags.
- name String
- The name of the load balancer.
- project
Id Number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts Property Map
- vip
Address String - Load balancer IP address
- vip
Network StringId - vip
Subnet StringId
Supporting Types
LoadbalancerListener, LoadbalancerListenerArgs
- Name string
- Protocol string
- Available values is 'TCP' (currently work, other do not work on ed-8), 'UDP', 'HTTP', 'HTTPS'
- Protocol
Port double - Certificate string
- Certificate
Chain string - Id string
- Insert
XForwarded bool - Private
Key string - Secret
Id string - Sni
Secret List<string>Ids
- Name string
- Protocol string
- Available values is 'TCP' (currently work, other do not work on ed-8), 'UDP', 'HTTP', 'HTTPS'
- Protocol
Port float64 - Certificate string
- Certificate
Chain string - Id string
- Insert
XForwarded bool - Private
Key string - Secret
Id string - Sni
Secret []stringIds
- name String
- protocol String
- Available values is 'TCP' (currently work, other do not work on ed-8), 'UDP', 'HTTP', 'HTTPS'
- protocol
Port Double - certificate String
- certificate
Chain String - id String
- insert
XForwarded Boolean - private
Key String - secret
Id String - sni
Secret List<String>Ids
- name string
- protocol string
- Available values is 'TCP' (currently work, other do not work on ed-8), 'UDP', 'HTTP', 'HTTPS'
- protocol
Port number - certificate string
- certificate
Chain string - id string
- insert
XForwarded boolean - private
Key string - secret
Id string - sni
Secret string[]Ids
- name str
- protocol str
- Available values is 'TCP' (currently work, other do not work on ed-8), 'UDP', 'HTTP', 'HTTPS'
- protocol_
port float - certificate str
- certificate_
chain str - id str
- insert_
x_ boolforwarded - private_
key str - secret_
id str - sni_
secret_ Sequence[str]ids
- name String
- protocol String
- Available values is 'TCP' (currently work, other do not work on ed-8), 'UDP', 'HTTP', 'HTTPS'
- protocol
Port Number - certificate String
- certificate
Chain String - id String
- insert
XForwarded Boolean - private
Key String - secret
Id String - sni
Secret List<String>Ids
LoadbalancerMetadataReadOnly, LoadbalancerMetadataReadOnlyArgs
LoadbalancerTimeouts, LoadbalancerTimeoutsArgs
Import
import using <project_id>:<region_id>:<loadbalancer_id>:<listener_id> format, listener_id - nested listener id
$ pulumi import edgecenter:index/loadbalancer:Loadbalancer loadbalancer1 1:6:447d2959-8ae0-4ca0-8d47-9f050a3637d7:a336f28c-fbb0-4256-9545-e905bed9f48f
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- edgecenter edge-center/terraform-provider-edgecenter
- License
- Notes
- This Pulumi package is based on the
edgecenter
Terraform Provider.