ionoscloud.alb.Balancer
Explore with Pulumi AI
Manages an Application Load Balancer on IonosCloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ionoscloud from "@ionos-cloud/sdk-pulumi";
const example = new ionoscloud.compute.Datacenter("example", {
name: "Datacenter Example",
location: "us/las",
description: "datacenter description",
secAuthProtection: false,
});
const example1 = new ionoscloud.compute.Lan("example_1", {
datacenterId: example.id,
"public": true,
name: "Lan Example",
});
const example2 = new ionoscloud.compute.Lan("example_2", {
datacenterId: example.id,
"public": true,
name: "Lan Example",
});
const exampleBalancer = new ionoscloud.alb.Balancer("example", {
datacenterId: example.id,
name: "ALB Example",
listenerLan: example1.id,
ips: ["10.12.118.224"],
targetLan: example2.id,
lbPrivateIps: ["10.13.72.225/24"],
centralLogging: true,
loggingFormat: "%{+Q}o %{-Q}ci - - [%trg] %r %ST %B \"\" \"\" %cp %ms %ft %b %s %TR %Tw %Tc %Tr %Ta %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl",
});
import pulumi
import pulumi_ionoscloud as ionoscloud
example = ionoscloud.compute.Datacenter("example",
name="Datacenter Example",
location="us/las",
description="datacenter description",
sec_auth_protection=False)
example1 = ionoscloud.compute.Lan("example_1",
datacenter_id=example.id,
public=True,
name="Lan Example")
example2 = ionoscloud.compute.Lan("example_2",
datacenter_id=example.id,
public=True,
name="Lan Example")
example_balancer = ionoscloud.alb.Balancer("example",
datacenter_id=example.id,
name="ALB Example",
listener_lan=example1.id,
ips=["10.12.118.224"],
target_lan=example2.id,
lb_private_ips=["10.13.72.225/24"],
central_logging=True,
logging_format="%{+Q}o %{-Q}ci - - [%trg] %r %ST %B \"\" \"\" %cp %ms %ft %b %s %TR %Tw %Tc %Tr %Ta %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl")
package main
import (
"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/alb"
"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := compute.NewDatacenter(ctx, "example", &compute.DatacenterArgs{
Name: pulumi.String("Datacenter Example"),
Location: pulumi.String("us/las"),
Description: pulumi.String("datacenter description"),
SecAuthProtection: pulumi.Bool(false),
})
if err != nil {
return err
}
example1, err := compute.NewLan(ctx, "example_1", &compute.LanArgs{
DatacenterId: example.ID(),
Public: pulumi.Bool(true),
Name: pulumi.String("Lan Example"),
})
if err != nil {
return err
}
example2, err := compute.NewLan(ctx, "example_2", &compute.LanArgs{
DatacenterId: example.ID(),
Public: pulumi.Bool(true),
Name: pulumi.String("Lan Example"),
})
if err != nil {
return err
}
_, err = alb.NewBalancer(ctx, "example", &alb.BalancerArgs{
DatacenterId: example.ID(),
Name: pulumi.String("ALB Example"),
ListenerLan: example1.ID(),
Ips: pulumi.StringArray{
pulumi.String("10.12.118.224"),
},
TargetLan: example2.ID(),
LbPrivateIps: pulumi.StringArray{
pulumi.String("10.13.72.225/24"),
},
CentralLogging: pulumi.Bool(true),
LoggingFormat: pulumi.String("%{+Q}o %{-Q}ci - - [%trg] %r %ST %B \"\" \"\" %cp %ms %ft %b %s %TR %Tw %Tc %Tr %Ta %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ionoscloud = Ionoscloud.Pulumi.Ionoscloud;
return await Deployment.RunAsync(() =>
{
var example = new Ionoscloud.Compute.Datacenter("example", new()
{
Name = "Datacenter Example",
Location = "us/las",
Description = "datacenter description",
SecAuthProtection = false,
});
var example1 = new Ionoscloud.Compute.Lan("example_1", new()
{
DatacenterId = example.Id,
Public = true,
Name = "Lan Example",
});
var example2 = new Ionoscloud.Compute.Lan("example_2", new()
{
DatacenterId = example.Id,
Public = true,
Name = "Lan Example",
});
var exampleBalancer = new Ionoscloud.Alb.Balancer("example", new()
{
DatacenterId = example.Id,
Name = "ALB Example",
ListenerLan = example1.Id,
Ips = new[]
{
"10.12.118.224",
},
TargetLan = example2.Id,
LbPrivateIps = new[]
{
"10.13.72.225/24",
},
CentralLogging = true,
LoggingFormat = "%{+Q}o %{-Q}ci - - [%trg] %r %ST %B \"\" \"\" %cp %ms %ft %b %s %TR %Tw %Tc %Tr %Ta %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ionoscloud.compute.Datacenter;
import com.pulumi.ionoscloud.compute.DatacenterArgs;
import com.pulumi.ionoscloud.compute.Lan;
import com.pulumi.ionoscloud.compute.LanArgs;
import com.pulumi.ionoscloud.alb.Balancer;
import com.pulumi.ionoscloud.alb.BalancerArgs;
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 example = new Datacenter("example", DatacenterArgs.builder()
.name("Datacenter Example")
.location("us/las")
.description("datacenter description")
.secAuthProtection(false)
.build());
var example1 = new Lan("example1", LanArgs.builder()
.datacenterId(example.id())
.public_(true)
.name("Lan Example")
.build());
var example2 = new Lan("example2", LanArgs.builder()
.datacenterId(example.id())
.public_(true)
.name("Lan Example")
.build());
var exampleBalancer = new Balancer("exampleBalancer", BalancerArgs.builder()
.datacenterId(example.id())
.name("ALB Example")
.listenerLan(example1.id())
.ips("10.12.118.224")
.targetLan(example2.id())
.lbPrivateIps("10.13.72.225/24")
.centralLogging(true)
.loggingFormat("%{+Q}o %{-Q}ci - - [%trg] %r %ST %B \"\" \"\" %cp %ms %ft %b %s %TR %Tw %Tc %Tr %Ta %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl")
.build());
}
}
resources:
example:
type: ionoscloud:compute:Datacenter
properties:
name: Datacenter Example
location: us/las
description: datacenter description
secAuthProtection: false
example1:
type: ionoscloud:compute:Lan
name: example_1
properties:
datacenterId: ${example.id}
public: true
name: Lan Example
example2:
type: ionoscloud:compute:Lan
name: example_2
properties:
datacenterId: ${example.id}
public: true
name: Lan Example
exampleBalancer:
type: ionoscloud:alb:Balancer
name: example
properties:
datacenterId: ${example.id}
name: ALB Example
listenerLan: ${example1.id}
ips:
- 10.12.118.224
targetLan: ${example2.id}
lbPrivateIps:
- 10.13.72.225/24
centralLogging: true
loggingFormat: '%{+Q}o %{-Q}ci - - [%trg] %r %ST %B "" "" %cp %ms %ft %b %s %TR %Tw %Tc %Tr %Ta %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl'
Create Balancer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Balancer(name: string, args: BalancerArgs, opts?: CustomResourceOptions);
@overload
def Balancer(resource_name: str,
args: BalancerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Balancer(resource_name: str,
opts: Optional[ResourceOptions] = None,
datacenter_id: Optional[str] = None,
listener_lan: Optional[int] = None,
target_lan: Optional[int] = None,
central_logging: Optional[bool] = None,
flowlog: Optional[BalancerFlowlogArgs] = None,
ips: Optional[Sequence[str]] = None,
lb_private_ips: Optional[Sequence[str]] = None,
logging_format: Optional[str] = None,
name: Optional[str] = None)
func NewBalancer(ctx *Context, name string, args BalancerArgs, opts ...ResourceOption) (*Balancer, error)
public Balancer(string name, BalancerArgs args, CustomResourceOptions? opts = null)
public Balancer(String name, BalancerArgs args)
public Balancer(String name, BalancerArgs args, CustomResourceOptions options)
type: ionoscloud:alb:Balancer
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 BalancerArgs
- 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 BalancerArgs
- 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 BalancerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BalancerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BalancerArgs
- 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 balancerResource = new Ionoscloud.Alb.Balancer("balancerResource", new()
{
DatacenterId = "string",
ListenerLan = 0,
TargetLan = 0,
CentralLogging = false,
Flowlog = new Ionoscloud.Alb.Inputs.BalancerFlowlogArgs
{
Action = "string",
Bucket = "string",
Direction = "string",
Name = "string",
Id = "string",
},
Ips = new[]
{
"string",
},
LbPrivateIps = new[]
{
"string",
},
LoggingFormat = "string",
Name = "string",
});
example, err := alb.NewBalancer(ctx, "balancerResource", &alb.BalancerArgs{
DatacenterId: pulumi.String("string"),
ListenerLan: pulumi.Int(0),
TargetLan: pulumi.Int(0),
CentralLogging: pulumi.Bool(false),
Flowlog: &alb.BalancerFlowlogArgs{
Action: pulumi.String("string"),
Bucket: pulumi.String("string"),
Direction: pulumi.String("string"),
Name: pulumi.String("string"),
Id: pulumi.String("string"),
},
Ips: pulumi.StringArray{
pulumi.String("string"),
},
LbPrivateIps: pulumi.StringArray{
pulumi.String("string"),
},
LoggingFormat: pulumi.String("string"),
Name: pulumi.String("string"),
})
var balancerResource = new com.ionoscloud.pulumi.ionoscloud.alb.Balancer("balancerResource", com.ionoscloud.pulumi.ionoscloud.alb.BalancerArgs.builder()
.datacenterId("string")
.listenerLan(0)
.targetLan(0)
.centralLogging(false)
.flowlog(BalancerFlowlogArgs.builder()
.action("string")
.bucket("string")
.direction("string")
.name("string")
.id("string")
.build())
.ips("string")
.lbPrivateIps("string")
.loggingFormat("string")
.name("string")
.build());
balancer_resource = ionoscloud.alb.Balancer("balancerResource",
datacenter_id="string",
listener_lan=0,
target_lan=0,
central_logging=False,
flowlog={
"action": "string",
"bucket": "string",
"direction": "string",
"name": "string",
"id": "string",
},
ips=["string"],
lb_private_ips=["string"],
logging_format="string",
name="string")
const balancerResource = new ionoscloud.alb.Balancer("balancerResource", {
datacenterId: "string",
listenerLan: 0,
targetLan: 0,
centralLogging: false,
flowlog: {
action: "string",
bucket: "string",
direction: "string",
name: "string",
id: "string",
},
ips: ["string"],
lbPrivateIps: ["string"],
loggingFormat: "string",
name: "string",
});
type: ionoscloud:alb:Balancer
properties:
centralLogging: false
datacenterId: string
flowlog:
action: string
bucket: string
direction: string
id: string
name: string
ips:
- string
lbPrivateIps:
- string
listenerLan: 0
loggingFormat: string
name: string
targetLan: 0
Balancer 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 Balancer resource accepts the following input properties:
- Datacenter
Id string - [string] ID of the datacenter.
- Listener
Lan int - [int] ID of the listening (inbound) LAN.
- Target
Lan int - [int] ID of the balanced private target LAN (outbound).
- Central
Logging bool - [bool] Turn logging on and off for this product. Default value is 'false'.
- Flowlog
Ionoscloud.
Balancer Flowlog - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- Ips List<string>
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- Lb
Private List<string>Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- Logging
Format string - Specifies the format of the logs.
- Name string
- [string] The name of the Application Load Balancer.
- Datacenter
Id string - [string] ID of the datacenter.
- Listener
Lan int - [int] ID of the listening (inbound) LAN.
- Target
Lan int - [int] ID of the balanced private target LAN (outbound).
- Central
Logging bool - [bool] Turn logging on and off for this product. Default value is 'false'.
- Flowlog
Balancer
Flowlog Args - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- Ips []string
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- Lb
Private []stringIps - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- Logging
Format string - Specifies the format of the logs.
- Name string
- [string] The name of the Application Load Balancer.
- datacenter
Id String - [string] ID of the datacenter.
- listener
Lan Integer - [int] ID of the listening (inbound) LAN.
- target
Lan Integer - [int] ID of the balanced private target LAN (outbound).
- central
Logging Boolean - [bool] Turn logging on and off for this product. Default value is 'false'.
- flowlog
Balancer
Flowlog - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips List<String>
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb
Private List<String>Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- logging
Format String - Specifies the format of the logs.
- name String
- [string] The name of the Application Load Balancer.
- datacenter
Id string - [string] ID of the datacenter.
- listener
Lan number - [int] ID of the listening (inbound) LAN.
- target
Lan number - [int] ID of the balanced private target LAN (outbound).
- central
Logging boolean - [bool] Turn logging on and off for this product. Default value is 'false'.
- flowlog
Balancer
Flowlog - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips string[]
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb
Private string[]Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- logging
Format string - Specifies the format of the logs.
- name string
- [string] The name of the Application Load Balancer.
- datacenter_
id str - [string] ID of the datacenter.
- listener_
lan int - [int] ID of the listening (inbound) LAN.
- target_
lan int - [int] ID of the balanced private target LAN (outbound).
- central_
logging bool - [bool] Turn logging on and off for this product. Default value is 'false'.
- flowlog
Balancer
Flowlog Args - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips Sequence[str]
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb_
private_ Sequence[str]ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- logging_
format str - Specifies the format of the logs.
- name str
- [string] The name of the Application Load Balancer.
- datacenter
Id String - [string] ID of the datacenter.
- listener
Lan Number - [int] ID of the listening (inbound) LAN.
- target
Lan Number - [int] ID of the balanced private target LAN (outbound).
- central
Logging Boolean - [bool] Turn logging on and off for this product. Default value is 'false'.
- flowlog Property Map
- [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips List<String>
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb
Private List<String>Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- logging
Format String - Specifies the format of the logs.
- name String
- [string] The name of the Application Load Balancer.
Outputs
All input properties are implicitly available as output properties. Additionally, the Balancer resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Balancer Resource
Get an existing Balancer 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?: BalancerState, opts?: CustomResourceOptions): Balancer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
central_logging: Optional[bool] = None,
datacenter_id: Optional[str] = None,
flowlog: Optional[BalancerFlowlogArgs] = None,
ips: Optional[Sequence[str]] = None,
lb_private_ips: Optional[Sequence[str]] = None,
listener_lan: Optional[int] = None,
logging_format: Optional[str] = None,
name: Optional[str] = None,
target_lan: Optional[int] = None) -> Balancer
func GetBalancer(ctx *Context, name string, id IDInput, state *BalancerState, opts ...ResourceOption) (*Balancer, error)
public static Balancer Get(string name, Input<string> id, BalancerState? state, CustomResourceOptions? opts = null)
public static Balancer get(String name, Output<String> id, BalancerState state, CustomResourceOptions options)
resources: _: type: ionoscloud:alb:Balancer 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.
- Central
Logging bool - [bool] Turn logging on and off for this product. Default value is 'false'.
- Datacenter
Id string - [string] ID of the datacenter.
- Flowlog
Ionoscloud.
Balancer Flowlog - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- Ips List<string>
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- Lb
Private List<string>Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- Listener
Lan int - [int] ID of the listening (inbound) LAN.
- Logging
Format string - Specifies the format of the logs.
- Name string
- [string] The name of the Application Load Balancer.
- Target
Lan int - [int] ID of the balanced private target LAN (outbound).
- Central
Logging bool - [bool] Turn logging on and off for this product. Default value is 'false'.
- Datacenter
Id string - [string] ID of the datacenter.
- Flowlog
Balancer
Flowlog Args - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- Ips []string
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- Lb
Private []stringIps - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- Listener
Lan int - [int] ID of the listening (inbound) LAN.
- Logging
Format string - Specifies the format of the logs.
- Name string
- [string] The name of the Application Load Balancer.
- Target
Lan int - [int] ID of the balanced private target LAN (outbound).
- central
Logging Boolean - [bool] Turn logging on and off for this product. Default value is 'false'.
- datacenter
Id String - [string] ID of the datacenter.
- flowlog
Balancer
Flowlog - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips List<String>
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb
Private List<String>Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- listener
Lan Integer - [int] ID of the listening (inbound) LAN.
- logging
Format String - Specifies the format of the logs.
- name String
- [string] The name of the Application Load Balancer.
- target
Lan Integer - [int] ID of the balanced private target LAN (outbound).
- central
Logging boolean - [bool] Turn logging on and off for this product. Default value is 'false'.
- datacenter
Id string - [string] ID of the datacenter.
- flowlog
Balancer
Flowlog - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips string[]
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb
Private string[]Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- listener
Lan number - [int] ID of the listening (inbound) LAN.
- logging
Format string - Specifies the format of the logs.
- name string
- [string] The name of the Application Load Balancer.
- target
Lan number - [int] ID of the balanced private target LAN (outbound).
- central_
logging bool - [bool] Turn logging on and off for this product. Default value is 'false'.
- datacenter_
id str - [string] ID of the datacenter.
- flowlog
Balancer
Flowlog Args - [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips Sequence[str]
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb_
private_ Sequence[str]ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- listener_
lan int - [int] ID of the listening (inbound) LAN.
- logging_
format str - Specifies the format of the logs.
- name str
- [string] The name of the Application Load Balancer.
- target_
lan int - [int] ID of the balanced private target LAN (outbound).
- central
Logging Boolean - [bool] Turn logging on and off for this product. Default value is 'false'.
- datacenter
Id String - [string] ID of the datacenter.
- flowlog Property Map
- [list] Only 1 flow log can be configured. Only the name field can change as part of an update. Flow logs holistically capture network information such as source and destination IP addresses, source and destination ports, number of packets, amount of bytes, the start and end time of the recording, and the type of protocol – and log the extent to which your instances are being accessed.
- ips List<String>
- [set] Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers.
- lb
Private List<String>Ips - [set] Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.
- listener
Lan Number - [int] ID of the listening (inbound) LAN.
- logging
Format String - Specifies the format of the logs.
- name String
- [string] The name of the Application Load Balancer.
- target
Lan Number - [int] ID of the balanced private target LAN (outbound).
Supporting Types
BalancerFlowlog, BalancerFlowlogArgs
- Action string
- [string] Specifies the action to be taken when the rule is matched. Possible values: ACCEPTED, REJECTED, ALL. Immutable, forces re-creation.
- Bucket string
- [string] Specifies the IONOS Object Storage bucket where the flow log data will be stored. The bucket must exist. Immutable, forces re-creation.
- Direction string
- [string] Specifies the traffic direction pattern. Valid values: INGRESS, EGRESS, BIDIRECTIONAL. Immutable, forces re-creation.
- Name string
[string] Specifies the name of the flow log.
⚠️ Note:: Removing the
flowlog
forces re-creation of the application load balancer resource.- Id string
- The resource's unique identifier.
- Action string
- [string] Specifies the action to be taken when the rule is matched. Possible values: ACCEPTED, REJECTED, ALL. Immutable, forces re-creation.
- Bucket string
- [string] Specifies the IONOS Object Storage bucket where the flow log data will be stored. The bucket must exist. Immutable, forces re-creation.
- Direction string
- [string] Specifies the traffic direction pattern. Valid values: INGRESS, EGRESS, BIDIRECTIONAL. Immutable, forces re-creation.
- Name string
[string] Specifies the name of the flow log.
⚠️ Note:: Removing the
flowlog
forces re-creation of the application load balancer resource.- Id string
- The resource's unique identifier.
- action String
- [string] Specifies the action to be taken when the rule is matched. Possible values: ACCEPTED, REJECTED, ALL. Immutable, forces re-creation.
- bucket String
- [string] Specifies the IONOS Object Storage bucket where the flow log data will be stored. The bucket must exist. Immutable, forces re-creation.
- direction String
- [string] Specifies the traffic direction pattern. Valid values: INGRESS, EGRESS, BIDIRECTIONAL. Immutable, forces re-creation.
- name String
[string] Specifies the name of the flow log.
⚠️ Note:: Removing the
flowlog
forces re-creation of the application load balancer resource.- id String
- The resource's unique identifier.
- action string
- [string] Specifies the action to be taken when the rule is matched. Possible values: ACCEPTED, REJECTED, ALL. Immutable, forces re-creation.
- bucket string
- [string] Specifies the IONOS Object Storage bucket where the flow log data will be stored. The bucket must exist. Immutable, forces re-creation.
- direction string
- [string] Specifies the traffic direction pattern. Valid values: INGRESS, EGRESS, BIDIRECTIONAL. Immutable, forces re-creation.
- name string
[string] Specifies the name of the flow log.
⚠️ Note:: Removing the
flowlog
forces re-creation of the application load balancer resource.- id string
- The resource's unique identifier.
- action str
- [string] Specifies the action to be taken when the rule is matched. Possible values: ACCEPTED, REJECTED, ALL. Immutable, forces re-creation.
- bucket str
- [string] Specifies the IONOS Object Storage bucket where the flow log data will be stored. The bucket must exist. Immutable, forces re-creation.
- direction str
- [string] Specifies the traffic direction pattern. Valid values: INGRESS, EGRESS, BIDIRECTIONAL. Immutable, forces re-creation.
- name str
[string] Specifies the name of the flow log.
⚠️ Note:: Removing the
flowlog
forces re-creation of the application load balancer resource.- id str
- The resource's unique identifier.
- action String
- [string] Specifies the action to be taken when the rule is matched. Possible values: ACCEPTED, REJECTED, ALL. Immutable, forces re-creation.
- bucket String
- [string] Specifies the IONOS Object Storage bucket where the flow log data will be stored. The bucket must exist. Immutable, forces re-creation.
- direction String
- [string] Specifies the traffic direction pattern. Valid values: INGRESS, EGRESS, BIDIRECTIONAL. Immutable, forces re-creation.
- name String
[string] Specifies the name of the flow log.
⚠️ Note:: Removing the
flowlog
forces re-creation of the application load balancer resource.- id String
- The resource's unique identifier.
Import
Resource Application Load Balancer can be imported using the resource id
and datacenter id
, e.g.
$ pulumi import ionoscloud:alb/balancer:Balancer myalb datacenter uuid/applicationLoadBalancer uuid
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ionoscloud ionos-cloud/pulumi-ionoscloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ionoscloud
Terraform Provider.