azure logo
Azure Classic v5.37.0, Mar 15 23

azure.lb.BackendAddressPoolAddress

Manages a Backend Address within a Backend Address Pool.

Note: Backend Addresses can only be added to a Standard SKU Load Balancer.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleVirtualNetwork = Azure.Network.GetVirtualNetwork.Invoke(new()
    {
        Name = "example-network",
        ResourceGroupName = "example-resources",
    });

    var exampleLB = Azure.Lb.GetLB.Invoke(new()
    {
        Name = "example-lb",
        ResourceGroupName = "example-resources",
    });

    var exampleBackendAddressPool = Azure.Lb.GetBackendAddressPool.Invoke(new()
    {
        Name = "first",
        LoadbalancerId = exampleLB.Apply(getLBResult => getLBResult.Id),
    });

    var exampleBackendAddressPoolAddress = new Azure.Lb.BackendAddressPoolAddress("exampleBackendAddressPoolAddress", new()
    {
        BackendAddressPoolId = exampleBackendAddressPool.Apply(getBackendAddressPoolResult => getBackendAddressPoolResult.Id),
        VirtualNetworkId = exampleVirtualNetwork.Apply(getVirtualNetworkResult => getVirtualNetworkResult.Id),
        IpAddress = "10.0.0.1",
    });

    var backend_pool_cr = Azure.Lb.GetBackendAddressPool.Invoke(new()
    {
        Name = "globalLBBackendPool",
        LoadbalancerId = exampleLB.Apply(getLBResult => getLBResult.Id),
    });

    var example_1 = new Azure.Lb.BackendAddressPoolAddress("example-1", new()
    {
        BackendAddressPoolId = backend_pool_cr.Apply(backend_pool_cr => backend_pool_cr.Apply(getBackendAddressPoolResult => getBackendAddressPoolResult.Id)),
        BackendAddressIpConfigurationId = azurerm_lb.Backend_lb_R1.Frontend_ip_configuration[0].Id,
    });

    var example_2 = new Azure.Lb.BackendAddressPoolAddress("example-2", new()
    {
        BackendAddressPoolId = backend_pool_cr.Apply(backend_pool_cr => backend_pool_cr.Apply(getBackendAddressPoolResult => getBackendAddressPoolResult.Id)),
        BackendAddressIpConfigurationId = azurerm_lb.Backend_lb_R2.Frontend_ip_configuration[0].Id,
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/lb"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleVirtualNetwork, err := network.LookupVirtualNetwork(ctx, &network.LookupVirtualNetworkArgs{
			Name:              "example-network",
			ResourceGroupName: "example-resources",
		}, nil)
		if err != nil {
			return err
		}
		exampleLB, err := lb.GetLB(ctx, &lb.GetLBArgs{
			Name:              "example-lb",
			ResourceGroupName: "example-resources",
		}, nil)
		if err != nil {
			return err
		}
		exampleBackendAddressPool, err := lb.LookupBackendAddressPool(ctx, &lb.LookupBackendAddressPoolArgs{
			Name:           "first",
			LoadbalancerId: exampleLB.Id,
		}, nil)
		if err != nil {
			return err
		}
		_, err = lb.NewBackendAddressPoolAddress(ctx, "exampleBackendAddressPoolAddress", &lb.BackendAddressPoolAddressArgs{
			BackendAddressPoolId: *pulumi.String(exampleBackendAddressPool.Id),
			VirtualNetworkId:     *pulumi.String(exampleVirtualNetwork.Id),
			IpAddress:            pulumi.String("10.0.0.1"),
		})
		if err != nil {
			return err
		}
		backend_pool_cr, err := lb.LookupBackendAddressPool(ctx, &lb.LookupBackendAddressPoolArgs{
			Name:           "globalLBBackendPool",
			LoadbalancerId: exampleLB.Id,
		}, nil)
		if err != nil {
			return err
		}
		_, err = lb.NewBackendAddressPoolAddress(ctx, "example-1", &lb.BackendAddressPoolAddressArgs{
			BackendAddressPoolId:            *pulumi.String(backend_pool_cr.Id),
			BackendAddressIpConfigurationId: pulumi.Any(azurerm_lb.BackendLbR1.Frontend_ip_configuration[0].Id),
		})
		if err != nil {
			return err
		}
		_, err = lb.NewBackendAddressPoolAddress(ctx, "example-2", &lb.BackendAddressPoolAddressArgs{
			BackendAddressPoolId:            *pulumi.String(backend_pool_cr.Id),
			BackendAddressIpConfigurationId: pulumi.Any(azurerm_lb.BackendLbR2.Frontend_ip_configuration[0].Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.network.NetworkFunctions;
import com.pulumi.azure.network.inputs.GetVirtualNetworkArgs;
import com.pulumi.azure.lb.LbFunctions;
import com.pulumi.azure.lb.inputs.GetLBArgs;
import com.pulumi.azure.lb.inputs.GetBackendAddressPoolArgs;
import com.pulumi.azure.lb.BackendAddressPoolAddress;
import com.pulumi.azure.lb.BackendAddressPoolAddressArgs;
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) {
        final var exampleVirtualNetwork = NetworkFunctions.getVirtualNetwork(GetVirtualNetworkArgs.builder()
            .name("example-network")
            .resourceGroupName("example-resources")
            .build());

        final var exampleLB = LbFunctions.getLB(GetLBArgs.builder()
            .name("example-lb")
            .resourceGroupName("example-resources")
            .build());

        final var exampleBackendAddressPool = LbFunctions.getBackendAddressPool(GetBackendAddressPoolArgs.builder()
            .name("first")
            .loadbalancerId(exampleLB.applyValue(getLBResult -> getLBResult.id()))
            .build());

        var exampleBackendAddressPoolAddress = new BackendAddressPoolAddress("exampleBackendAddressPoolAddress", BackendAddressPoolAddressArgs.builder()        
            .backendAddressPoolId(exampleBackendAddressPool.applyValue(getBackendAddressPoolResult -> getBackendAddressPoolResult.id()))
            .virtualNetworkId(exampleVirtualNetwork.applyValue(getVirtualNetworkResult -> getVirtualNetworkResult.id()))
            .ipAddress("10.0.0.1")
            .build());

        final var backend-pool-cr = LbFunctions.getBackendAddressPool(GetBackendAddressPoolArgs.builder()
            .name("globalLBBackendPool")
            .loadbalancerId(exampleLB.applyValue(getLBResult -> getLBResult.id()))
            .build());

        var example_1 = new BackendAddressPoolAddress("example-1", BackendAddressPoolAddressArgs.builder()        
            .backendAddressPoolId(backend_pool_cr.id())
            .backendAddressIpConfigurationId(azurerm_lb.backend-lb-R1().frontend_ip_configuration()[0].id())
            .build());

        var example_2 = new BackendAddressPoolAddress("example-2", BackendAddressPoolAddressArgs.builder()        
            .backendAddressPoolId(backend_pool_cr.id())
            .backendAddressIpConfigurationId(azurerm_lb.backend-lb-R2().frontend_ip_configuration()[0].id())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_virtual_network = azure.network.get_virtual_network(name="example-network",
    resource_group_name="example-resources")
example_lb = azure.lb.get_lb(name="example-lb",
    resource_group_name="example-resources")
example_backend_address_pool = azure.lb.get_backend_address_pool(name="first",
    loadbalancer_id=example_lb.id)
example_backend_address_pool_address = azure.lb.BackendAddressPoolAddress("exampleBackendAddressPoolAddress",
    backend_address_pool_id=example_backend_address_pool.id,
    virtual_network_id=example_virtual_network.id,
    ip_address="10.0.0.1")
backend_pool_cr = azure.lb.get_backend_address_pool(name="globalLBBackendPool",
    loadbalancer_id=example_lb.id)
example_1 = azure.lb.BackendAddressPoolAddress("example-1",
    backend_address_pool_id=backend_pool_cr.id,
    backend_address_ip_configuration_id=azurerm_lb["backend-lb-R1"]["frontend_ip_configuration"][0]["id"])
example_2 = azure.lb.BackendAddressPoolAddress("example-2",
    backend_address_pool_id=backend_pool_cr.id,
    backend_address_ip_configuration_id=azurerm_lb["backend-lb-R2"]["frontend_ip_configuration"][0]["id"])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleVirtualNetwork = azure.network.getVirtualNetwork({
    name: "example-network",
    resourceGroupName: "example-resources",
});
const exampleLB = azure.lb.getLB({
    name: "example-lb",
    resourceGroupName: "example-resources",
});
const exampleBackendAddressPool = exampleLB.then(exampleLB => azure.lb.getBackendAddressPool({
    name: "first",
    loadbalancerId: exampleLB.id,
}));
const exampleBackendAddressPoolAddress = new azure.lb.BackendAddressPoolAddress("exampleBackendAddressPoolAddress", {
    backendAddressPoolId: exampleBackendAddressPool.then(exampleBackendAddressPool => exampleBackendAddressPool.id),
    virtualNetworkId: exampleVirtualNetwork.then(exampleVirtualNetwork => exampleVirtualNetwork.id),
    ipAddress: "10.0.0.1",
});
const backend-pool-cr = exampleLB.then(exampleLB => azure.lb.getBackendAddressPool({
    name: "globalLBBackendPool",
    loadbalancerId: exampleLB.id,
}));
const example_1 = new azure.lb.BackendAddressPoolAddress("example-1", {
    backendAddressPoolId: backend_pool_cr.then(backend_pool_cr => backend_pool_cr.id),
    backendAddressIpConfigurationId: azurerm_lb["backend-lb-R1"].frontend_ip_configuration[0].id,
});
const example_2 = new azure.lb.BackendAddressPoolAddress("example-2", {
    backendAddressPoolId: backend_pool_cr.then(backend_pool_cr => backend_pool_cr.id),
    backendAddressIpConfigurationId: azurerm_lb["backend-lb-R2"].frontend_ip_configuration[0].id,
});
resources:
  exampleBackendAddressPoolAddress:
    type: azure:lb:BackendAddressPoolAddress
    properties:
      backendAddressPoolId: ${exampleBackendAddressPool.id}
      virtualNetworkId: ${exampleVirtualNetwork.id}
      ipAddress: 10.0.0.1
  example-1:
    type: azure:lb:BackendAddressPoolAddress
    properties:
      backendAddressPoolId: ${["backend-pool-cr"].id}
      backendAddressIpConfigurationId: ${azurerm_lb"backend-lb-R1"[%!s(MISSING)].frontend_ip_configuration[0].id}
  example-2:
    type: azure:lb:BackendAddressPoolAddress
    properties:
      backendAddressPoolId: ${["backend-pool-cr"].id}
      backendAddressIpConfigurationId: ${azurerm_lb"backend-lb-R2"[%!s(MISSING)].frontend_ip_configuration[0].id}
variables:
  exampleVirtualNetwork:
    fn::invoke:
      Function: azure:network:getVirtualNetwork
      Arguments:
        name: example-network
        resourceGroupName: example-resources
  exampleLB:
    fn::invoke:
      Function: azure:lb:getLB
      Arguments:
        name: example-lb
        resourceGroupName: example-resources
  exampleBackendAddressPool:
    fn::invoke:
      Function: azure:lb:getBackendAddressPool
      Arguments:
        name: first
        loadbalancerId: ${exampleLB.id}
  backend-pool-cr:
    fn::invoke:
      Function: azure:lb:getBackendAddressPool
      Arguments:
        name: globalLBBackendPool
        loadbalancerId: ${exampleLB.id}

Create BackendAddressPoolAddress Resource

new BackendAddressPoolAddress(name: string, args: BackendAddressPoolAddressArgs, opts?: CustomResourceOptions);
@overload
def BackendAddressPoolAddress(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              backend_address_ip_configuration_id: Optional[str] = None,
                              backend_address_pool_id: Optional[str] = None,
                              ip_address: Optional[str] = None,
                              name: Optional[str] = None,
                              virtual_network_id: Optional[str] = None)
@overload
def BackendAddressPoolAddress(resource_name: str,
                              args: BackendAddressPoolAddressArgs,
                              opts: Optional[ResourceOptions] = None)
func NewBackendAddressPoolAddress(ctx *Context, name string, args BackendAddressPoolAddressArgs, opts ...ResourceOption) (*BackendAddressPoolAddress, error)
public BackendAddressPoolAddress(string name, BackendAddressPoolAddressArgs args, CustomResourceOptions? opts = null)
public BackendAddressPoolAddress(String name, BackendAddressPoolAddressArgs args)
public BackendAddressPoolAddress(String name, BackendAddressPoolAddressArgs args, CustomResourceOptions options)
type: azure:lb:BackendAddressPoolAddress
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args BackendAddressPoolAddressArgs
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 BackendAddressPoolAddressArgs
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 BackendAddressPoolAddressArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args BackendAddressPoolAddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args BackendAddressPoolAddressArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

BackendAddressPoolAddress 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 BackendAddressPoolAddress resource accepts the following input properties:

BackendAddressPoolId string

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

BackendAddressIpConfigurationId string

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

IpAddress string

The Static IP Address which should be allocated to this Backend Address Pool.

Name string

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

VirtualNetworkId string

The ID of the Virtual Network within which the Backend Address Pool should exist.

BackendAddressPoolId string

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

BackendAddressIpConfigurationId string

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

IpAddress string

The Static IP Address which should be allocated to this Backend Address Pool.

Name string

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

VirtualNetworkId string

The ID of the Virtual Network within which the Backend Address Pool should exist.

backendAddressPoolId String

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

backendAddressIpConfigurationId String

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

ipAddress String

The Static IP Address which should be allocated to this Backend Address Pool.

name String

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtualNetworkId String

The ID of the Virtual Network within which the Backend Address Pool should exist.

backendAddressPoolId string

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

backendAddressIpConfigurationId string

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

ipAddress string

The Static IP Address which should be allocated to this Backend Address Pool.

name string

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtualNetworkId string

The ID of the Virtual Network within which the Backend Address Pool should exist.

backend_address_pool_id str

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

backend_address_ip_configuration_id str

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

ip_address str

The Static IP Address which should be allocated to this Backend Address Pool.

name str

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtual_network_id str

The ID of the Virtual Network within which the Backend Address Pool should exist.

backendAddressPoolId String

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

backendAddressIpConfigurationId String

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

ipAddress String

The Static IP Address which should be allocated to this Backend Address Pool.

name String

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtualNetworkId String

The ID of the Virtual Network within which the Backend Address Pool should exist.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

InboundNatRulePortMappings List<Pulumi.Azure.Lb.Outputs.BackendAddressPoolAddressInboundNatRulePortMapping>

A list of inbound_nat_rule_port_mapping block as defined below.

Id string

The provider-assigned unique ID for this managed resource.

InboundNatRulePortMappings []BackendAddressPoolAddressInboundNatRulePortMapping

A list of inbound_nat_rule_port_mapping block as defined below.

id String

The provider-assigned unique ID for this managed resource.

inboundNatRulePortMappings List<BackendAddressPoolAddressInboundNatRulePortMapping>

A list of inbound_nat_rule_port_mapping block as defined below.

id string

The provider-assigned unique ID for this managed resource.

inboundNatRulePortMappings BackendAddressPoolAddressInboundNatRulePortMapping[]

A list of inbound_nat_rule_port_mapping block as defined below.

id str

The provider-assigned unique ID for this managed resource.

inbound_nat_rule_port_mappings Sequence[BackendAddressPoolAddressInboundNatRulePortMapping]

A list of inbound_nat_rule_port_mapping block as defined below.

id String

The provider-assigned unique ID for this managed resource.

inboundNatRulePortMappings List<Property Map>

A list of inbound_nat_rule_port_mapping block as defined below.

Look up Existing BackendAddressPoolAddress Resource

Get an existing BackendAddressPoolAddress 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?: BackendAddressPoolAddressState, opts?: CustomResourceOptions): BackendAddressPoolAddress
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        backend_address_ip_configuration_id: Optional[str] = None,
        backend_address_pool_id: Optional[str] = None,
        inbound_nat_rule_port_mappings: Optional[Sequence[BackendAddressPoolAddressInboundNatRulePortMappingArgs]] = None,
        ip_address: Optional[str] = None,
        name: Optional[str] = None,
        virtual_network_id: Optional[str] = None) -> BackendAddressPoolAddress
func GetBackendAddressPoolAddress(ctx *Context, name string, id IDInput, state *BackendAddressPoolAddressState, opts ...ResourceOption) (*BackendAddressPoolAddress, error)
public static BackendAddressPoolAddress Get(string name, Input<string> id, BackendAddressPoolAddressState? state, CustomResourceOptions? opts = null)
public static BackendAddressPoolAddress get(String name, Output<String> id, BackendAddressPoolAddressState 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.
The following state arguments are supported:
BackendAddressIpConfigurationId string

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

BackendAddressPoolId string

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

InboundNatRulePortMappings List<Pulumi.Azure.Lb.Inputs.BackendAddressPoolAddressInboundNatRulePortMappingArgs>

A list of inbound_nat_rule_port_mapping block as defined below.

IpAddress string

The Static IP Address which should be allocated to this Backend Address Pool.

Name string

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

VirtualNetworkId string

The ID of the Virtual Network within which the Backend Address Pool should exist.

BackendAddressIpConfigurationId string

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

BackendAddressPoolId string

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

InboundNatRulePortMappings []BackendAddressPoolAddressInboundNatRulePortMappingArgs

A list of inbound_nat_rule_port_mapping block as defined below.

IpAddress string

The Static IP Address which should be allocated to this Backend Address Pool.

Name string

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

VirtualNetworkId string

The ID of the Virtual Network within which the Backend Address Pool should exist.

backendAddressIpConfigurationId String

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

backendAddressPoolId String

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

inboundNatRulePortMappings List<BackendAddressPoolAddressInboundNatRulePortMappingArgs>

A list of inbound_nat_rule_port_mapping block as defined below.

ipAddress String

The Static IP Address which should be allocated to this Backend Address Pool.

name String

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtualNetworkId String

The ID of the Virtual Network within which the Backend Address Pool should exist.

backendAddressIpConfigurationId string

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

backendAddressPoolId string

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

inboundNatRulePortMappings BackendAddressPoolAddressInboundNatRulePortMappingArgs[]

A list of inbound_nat_rule_port_mapping block as defined below.

ipAddress string

The Static IP Address which should be allocated to this Backend Address Pool.

name string

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtualNetworkId string

The ID of the Virtual Network within which the Backend Address Pool should exist.

backend_address_ip_configuration_id str

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

backend_address_pool_id str

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

inbound_nat_rule_port_mappings Sequence[BackendAddressPoolAddressInboundNatRulePortMappingArgs]

A list of inbound_nat_rule_port_mapping block as defined below.

ip_address str

The Static IP Address which should be allocated to this Backend Address Pool.

name str

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtual_network_id str

The ID of the Virtual Network within which the Backend Address Pool should exist.

backendAddressIpConfigurationId String

The ip config ID of the regional load balancer that's added to the global load balancer's backend address pool.

backendAddressPoolId String

The ID of the Backend Address Pool. Changing this forces a new Backend Address Pool Address to be created.

inboundNatRulePortMappings List<Property Map>

A list of inbound_nat_rule_port_mapping block as defined below.

ipAddress String

The Static IP Address which should be allocated to this Backend Address Pool.

name String

The name which should be used for this Backend Address Pool Address. Changing this forces a new Backend Address Pool Address to be created.

virtualNetworkId String

The ID of the Virtual Network within which the Backend Address Pool should exist.

Supporting Types

BackendAddressPoolAddressInboundNatRulePortMapping

BackendPort int

The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

FrontendPort int

The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

InboundNatRuleName string

The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

BackendPort int

The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

FrontendPort int

The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

InboundNatRuleName string

The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

backendPort Integer

The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

frontendPort Integer

The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

inboundNatRuleName String

The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

backendPort number

The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

frontendPort number

The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

inboundNatRuleName string

The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

backend_port int

The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

frontend_port int

The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

inbound_nat_rule_name str

The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

backendPort Number

The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

frontendPort Number

The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

inboundNatRuleName String

The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.

Import

Backend Address Pool Addresses can be imported using the resource id, e.g.

 $ pulumi import azure:lb/backendAddressPoolAddress:BackendAddressPoolAddress example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/loadBalancers/loadBalancer1/backendAddressPools/backendAddressPool1/addresses/address1

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.