1. Packages
  2. Azure Classic
  3. API Docs
  4. appconfiguration
  5. LicationLoadBalancerSubnetAssociation

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

azure.appconfiguration.LicationLoadBalancerSubnetAssociation

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

    Manages an association between an Application Gateway for Containers and a Subnet.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-rg",
        location: "westeurope",
    });
    const exampleLicationLoadBalancer = new azure.appconfiguration.LicationLoadBalancer("example", {
        name: "example-alb",
        location: example.location,
        resourceGroupName: example.name,
    });
    const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
        name: "example-vnet",
        addressSpaces: ["10.0.0.0/16"],
        location: example.location,
        resourceGroupName: example.name,
    });
    const exampleSubnet = new azure.network.Subnet("example", {
        name: "example-subnet",
        resourceGroupName: example.name,
        virtualNetworkName: exampleVirtualNetwork.name,
        addressPrefixes: ["10.0.1.0/24"],
        delegations: [{
            name: "delegation",
            serviceDelegation: {
                name: "Microsoft.ServiceNetworking/trafficControllers",
                actions: ["Microsoft.Network/virtualNetworks/subnets/join/action"],
            },
        }],
    });
    const exampleLicationLoadBalancerSubnetAssociation = new azure.appconfiguration.LicationLoadBalancerSubnetAssociation("example", {
        name: "example",
        applicationLoadBalancerId: exampleLicationLoadBalancer.id,
        subnetId: exampleSubnet.id,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-rg",
        location="westeurope")
    example_lication_load_balancer = azure.appconfiguration.LicationLoadBalancer("example",
        name="example-alb",
        location=example.location,
        resource_group_name=example.name)
    example_virtual_network = azure.network.VirtualNetwork("example",
        name="example-vnet",
        address_spaces=["10.0.0.0/16"],
        location=example.location,
        resource_group_name=example.name)
    example_subnet = azure.network.Subnet("example",
        name="example-subnet",
        resource_group_name=example.name,
        virtual_network_name=example_virtual_network.name,
        address_prefixes=["10.0.1.0/24"],
        delegations=[azure.network.SubnetDelegationArgs(
            name="delegation",
            service_delegation=azure.network.SubnetDelegationServiceDelegationArgs(
                name="Microsoft.ServiceNetworking/trafficControllers",
                actions=["Microsoft.Network/virtualNetworks/subnets/join/action"],
            ),
        )])
    example_lication_load_balancer_subnet_association = azure.appconfiguration.LicationLoadBalancerSubnetAssociation("example",
        name="example",
        application_load_balancer_id=example_lication_load_balancer.id,
        subnet_id=example_subnet.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appconfiguration"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"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 {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-rg"),
    			Location: pulumi.String("westeurope"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleLicationLoadBalancer, err := appconfiguration.NewLicationLoadBalancer(ctx, "example", &appconfiguration.LicationLoadBalancerArgs{
    			Name:              pulumi.String("example-alb"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    		})
    		if err != nil {
    			return err
    		}
    		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
    			Name: pulumi.String("example-vnet"),
    			AddressSpaces: pulumi.StringArray{
    				pulumi.String("10.0.0.0/16"),
    			},
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    		})
    		if err != nil {
    			return err
    		}
    		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
    			Name:               pulumi.String("example-subnet"),
    			ResourceGroupName:  example.Name,
    			VirtualNetworkName: exampleVirtualNetwork.Name,
    			AddressPrefixes: pulumi.StringArray{
    				pulumi.String("10.0.1.0/24"),
    			},
    			Delegations: network.SubnetDelegationArray{
    				&network.SubnetDelegationArgs{
    					Name: pulumi.String("delegation"),
    					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
    						Name: pulumi.String("Microsoft.ServiceNetworking/trafficControllers"),
    						Actions: pulumi.StringArray{
    							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appconfiguration.NewLicationLoadBalancerSubnetAssociation(ctx, "example", &appconfiguration.LicationLoadBalancerSubnetAssociationArgs{
    			Name:                      pulumi.String("example"),
    			ApplicationLoadBalancerId: exampleLicationLoadBalancer.ID(),
    			SubnetId:                  exampleSubnet.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-rg",
            Location = "westeurope",
        });
    
        var exampleLicationLoadBalancer = new Azure.AppConfiguration.LicationLoadBalancer("example", new()
        {
            Name = "example-alb",
            Location = example.Location,
            ResourceGroupName = example.Name,
        });
    
        var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
        {
            Name = "example-vnet",
            AddressSpaces = new[]
            {
                "10.0.0.0/16",
            },
            Location = example.Location,
            ResourceGroupName = example.Name,
        });
    
        var exampleSubnet = new Azure.Network.Subnet("example", new()
        {
            Name = "example-subnet",
            ResourceGroupName = example.Name,
            VirtualNetworkName = exampleVirtualNetwork.Name,
            AddressPrefixes = new[]
            {
                "10.0.1.0/24",
            },
            Delegations = new[]
            {
                new Azure.Network.Inputs.SubnetDelegationArgs
                {
                    Name = "delegation",
                    ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
                    {
                        Name = "Microsoft.ServiceNetworking/trafficControllers",
                        Actions = new[]
                        {
                            "Microsoft.Network/virtualNetworks/subnets/join/action",
                        },
                    },
                },
            },
        });
    
        var exampleLicationLoadBalancerSubnetAssociation = new Azure.AppConfiguration.LicationLoadBalancerSubnetAssociation("example", new()
        {
            Name = "example",
            ApplicationLoadBalancerId = exampleLicationLoadBalancer.Id,
            SubnetId = exampleSubnet.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.appconfiguration.LicationLoadBalancer;
    import com.pulumi.azure.appconfiguration.LicationLoadBalancerArgs;
    import com.pulumi.azure.network.VirtualNetwork;
    import com.pulumi.azure.network.VirtualNetworkArgs;
    import com.pulumi.azure.network.Subnet;
    import com.pulumi.azure.network.SubnetArgs;
    import com.pulumi.azure.network.inputs.SubnetDelegationArgs;
    import com.pulumi.azure.network.inputs.SubnetDelegationServiceDelegationArgs;
    import com.pulumi.azure.appconfiguration.LicationLoadBalancerSubnetAssociation;
    import com.pulumi.azure.appconfiguration.LicationLoadBalancerSubnetAssociationArgs;
    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 ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-rg")
                .location("westeurope")
                .build());
    
            var exampleLicationLoadBalancer = new LicationLoadBalancer("exampleLicationLoadBalancer", LicationLoadBalancerArgs.builder()        
                .name("example-alb")
                .location(example.location())
                .resourceGroupName(example.name())
                .build());
    
            var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
                .name("example-vnet")
                .addressSpaces("10.0.0.0/16")
                .location(example.location())
                .resourceGroupName(example.name())
                .build());
    
            var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()        
                .name("example-subnet")
                .resourceGroupName(example.name())
                .virtualNetworkName(exampleVirtualNetwork.name())
                .addressPrefixes("10.0.1.0/24")
                .delegations(SubnetDelegationArgs.builder()
                    .name("delegation")
                    .serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
                        .name("Microsoft.ServiceNetworking/trafficControllers")
                        .actions("Microsoft.Network/virtualNetworks/subnets/join/action")
                        .build())
                    .build())
                .build());
    
            var exampleLicationLoadBalancerSubnetAssociation = new LicationLoadBalancerSubnetAssociation("exampleLicationLoadBalancerSubnetAssociation", LicationLoadBalancerSubnetAssociationArgs.builder()        
                .name("example")
                .applicationLoadBalancerId(exampleLicationLoadBalancer.id())
                .subnetId(exampleSubnet.id())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-rg
          location: westeurope
      exampleLicationLoadBalancer:
        type: azure:appconfiguration:LicationLoadBalancer
        name: example
        properties:
          name: example-alb
          location: ${example.location}
          resourceGroupName: ${example.name}
      exampleVirtualNetwork:
        type: azure:network:VirtualNetwork
        name: example
        properties:
          name: example-vnet
          addressSpaces:
            - 10.0.0.0/16
          location: ${example.location}
          resourceGroupName: ${example.name}
      exampleSubnet:
        type: azure:network:Subnet
        name: example
        properties:
          name: example-subnet
          resourceGroupName: ${example.name}
          virtualNetworkName: ${exampleVirtualNetwork.name}
          addressPrefixes:
            - 10.0.1.0/24
          delegations:
            - name: delegation
              serviceDelegation:
                name: Microsoft.ServiceNetworking/trafficControllers
                actions:
                  - Microsoft.Network/virtualNetworks/subnets/join/action
      exampleLicationLoadBalancerSubnetAssociation:
        type: azure:appconfiguration:LicationLoadBalancerSubnetAssociation
        name: example
        properties:
          name: example
          applicationLoadBalancerId: ${exampleLicationLoadBalancer.id}
          subnetId: ${exampleSubnet.id}
    

    Create LicationLoadBalancerSubnetAssociation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new LicationLoadBalancerSubnetAssociation(name: string, args: LicationLoadBalancerSubnetAssociationArgs, opts?: CustomResourceOptions);
    @overload
    def LicationLoadBalancerSubnetAssociation(resource_name: str,
                                              args: LicationLoadBalancerSubnetAssociationArgs,
                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def LicationLoadBalancerSubnetAssociation(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              application_load_balancer_id: Optional[str] = None,
                                              subnet_id: Optional[str] = None,
                                              name: Optional[str] = None,
                                              tags: Optional[Mapping[str, str]] = None)
    func NewLicationLoadBalancerSubnetAssociation(ctx *Context, name string, args LicationLoadBalancerSubnetAssociationArgs, opts ...ResourceOption) (*LicationLoadBalancerSubnetAssociation, error)
    public LicationLoadBalancerSubnetAssociation(string name, LicationLoadBalancerSubnetAssociationArgs args, CustomResourceOptions? opts = null)
    public LicationLoadBalancerSubnetAssociation(String name, LicationLoadBalancerSubnetAssociationArgs args)
    public LicationLoadBalancerSubnetAssociation(String name, LicationLoadBalancerSubnetAssociationArgs args, CustomResourceOptions options)
    
    type: azure:appconfiguration:LicationLoadBalancerSubnetAssociation
    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 LicationLoadBalancerSubnetAssociationArgs
    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 LicationLoadBalancerSubnetAssociationArgs
    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 LicationLoadBalancerSubnetAssociationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LicationLoadBalancerSubnetAssociationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LicationLoadBalancerSubnetAssociationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var licationLoadBalancerSubnetAssociationResource = new Azure.AppConfiguration.LicationLoadBalancerSubnetAssociation("licationLoadBalancerSubnetAssociationResource", new()
    {
        ApplicationLoadBalancerId = "string",
        SubnetId = "string",
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := appconfiguration.NewLicationLoadBalancerSubnetAssociation(ctx, "licationLoadBalancerSubnetAssociationResource", &appconfiguration.LicationLoadBalancerSubnetAssociationArgs{
    	ApplicationLoadBalancerId: pulumi.String("string"),
    	SubnetId:                  pulumi.String("string"),
    	Name:                      pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var licationLoadBalancerSubnetAssociationResource = new LicationLoadBalancerSubnetAssociation("licationLoadBalancerSubnetAssociationResource", LicationLoadBalancerSubnetAssociationArgs.builder()        
        .applicationLoadBalancerId("string")
        .subnetId("string")
        .name("string")
        .tags(Map.of("string", "string"))
        .build());
    
    lication_load_balancer_subnet_association_resource = azure.appconfiguration.LicationLoadBalancerSubnetAssociation("licationLoadBalancerSubnetAssociationResource",
        application_load_balancer_id="string",
        subnet_id="string",
        name="string",
        tags={
            "string": "string",
        })
    
    const licationLoadBalancerSubnetAssociationResource = new azure.appconfiguration.LicationLoadBalancerSubnetAssociation("licationLoadBalancerSubnetAssociationResource", {
        applicationLoadBalancerId: "string",
        subnetId: "string",
        name: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:appconfiguration:LicationLoadBalancerSubnetAssociation
    properties:
        applicationLoadBalancerId: string
        name: string
        subnetId: string
        tags:
            string: string
    

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

    ApplicationLoadBalancerId string
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    SubnetId string

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    Name string
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    ApplicationLoadBalancerId string
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    SubnetId string

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    Name string
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    applicationLoadBalancerId String
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    subnetId String

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    name String
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    applicationLoadBalancerId string
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    subnetId string

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    name string
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    application_load_balancer_id str
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    subnet_id str

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    name str
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    applicationLoadBalancerId String
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    subnetId String

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    name String
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LicationLoadBalancerSubnetAssociation 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 LicationLoadBalancerSubnetAssociation Resource

    Get an existing LicationLoadBalancerSubnetAssociation 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?: LicationLoadBalancerSubnetAssociationState, opts?: CustomResourceOptions): LicationLoadBalancerSubnetAssociation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_load_balancer_id: Optional[str] = None,
            name: Optional[str] = None,
            subnet_id: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> LicationLoadBalancerSubnetAssociation
    func GetLicationLoadBalancerSubnetAssociation(ctx *Context, name string, id IDInput, state *LicationLoadBalancerSubnetAssociationState, opts ...ResourceOption) (*LicationLoadBalancerSubnetAssociation, error)
    public static LicationLoadBalancerSubnetAssociation Get(string name, Input<string> id, LicationLoadBalancerSubnetAssociationState? state, CustomResourceOptions? opts = null)
    public static LicationLoadBalancerSubnetAssociation get(String name, Output<String> id, LicationLoadBalancerSubnetAssociationState 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:
    ApplicationLoadBalancerId string
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    SubnetId string

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    ApplicationLoadBalancerId string
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    SubnetId string

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    Tags map[string]string
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    applicationLoadBalancerId String
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    subnetId String

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    tags Map<String,String>
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    applicationLoadBalancerId string
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    name string
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    subnetId string

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    application_load_balancer_id str
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    name str
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    subnet_id str

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.
    applicationLoadBalancerId String
    The ID of the Application Gateway for Containers. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Application Gateway for Containers Association. Changing this forces a new resource to be created.
    subnetId String

    The ID of the subnet which the Application Gateway for Containers associated to.

    Note: The subnet to be used must have a delegation for Microsoft.ServiceNetworking/trafficControllers as shown in the example above.

    tags Map<String>
    A mapping of tags which should be assigned to the Application Gateway for Containers Association.

    Import

    Application Gateway for Containers Associations can be imported using the resource id, e.g.

    $ pulumi import azure:appconfiguration/licationLoadBalancerSubnetAssociation:LicationLoadBalancerSubnetAssociation example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ServiceNetworking/trafficControllers/alb1/associations/association1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi