We recommend using Azure Native.
azure.network.ExpressRouteCircuitAuthorization
Explore with Pulumi AI
Manages an ExpressRoute Circuit Authorization.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleExpressRouteCircuit = new Azure.Network.ExpressRouteCircuit("exampleExpressRouteCircuit", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
ServiceProviderName = "Equinix",
PeeringLocation = "Silicon Valley",
BandwidthInMbps = 50,
Sku = new Azure.Network.Inputs.ExpressRouteCircuitSkuArgs
{
Tier = "Standard",
Family = "MeteredData",
},
AllowClassicOperations = false,
Tags =
{
{ "environment", "Production" },
},
});
var exampleExpressRouteCircuitAuthorization = new Azure.Network.ExpressRouteCircuitAuthorization("exampleExpressRouteCircuitAuthorization", new()
{
ExpressRouteCircuitName = exampleExpressRouteCircuit.Name,
ResourceGroupName = exampleResourceGroup.Name,
});
});
package main
import (
"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 {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleExpressRouteCircuit, err := network.NewExpressRouteCircuit(ctx, "exampleExpressRouteCircuit", &network.ExpressRouteCircuitArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
ServiceProviderName: pulumi.String("Equinix"),
PeeringLocation: pulumi.String("Silicon Valley"),
BandwidthInMbps: pulumi.Int(50),
Sku: &network.ExpressRouteCircuitSkuArgs{
Tier: pulumi.String("Standard"),
Family: pulumi.String("MeteredData"),
},
AllowClassicOperations: pulumi.Bool(false),
Tags: pulumi.StringMap{
"environment": pulumi.String("Production"),
},
})
if err != nil {
return err
}
_, err = network.NewExpressRouteCircuitAuthorization(ctx, "exampleExpressRouteCircuitAuthorization", &network.ExpressRouteCircuitAuthorizationArgs{
ExpressRouteCircuitName: exampleExpressRouteCircuit.Name,
ResourceGroupName: exampleResourceGroup.Name,
})
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.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.ExpressRouteCircuit;
import com.pulumi.azure.network.ExpressRouteCircuitArgs;
import com.pulumi.azure.network.inputs.ExpressRouteCircuitSkuArgs;
import com.pulumi.azure.network.ExpressRouteCircuitAuthorization;
import com.pulumi.azure.network.ExpressRouteCircuitAuthorizationArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleExpressRouteCircuit = new ExpressRouteCircuit("exampleExpressRouteCircuit", ExpressRouteCircuitArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.serviceProviderName("Equinix")
.peeringLocation("Silicon Valley")
.bandwidthInMbps(50)
.sku(ExpressRouteCircuitSkuArgs.builder()
.tier("Standard")
.family("MeteredData")
.build())
.allowClassicOperations(false)
.tags(Map.of("environment", "Production"))
.build());
var exampleExpressRouteCircuitAuthorization = new ExpressRouteCircuitAuthorization("exampleExpressRouteCircuitAuthorization", ExpressRouteCircuitAuthorizationArgs.builder()
.expressRouteCircuitName(exampleExpressRouteCircuit.name())
.resourceGroupName(exampleResourceGroup.name())
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_express_route_circuit = azure.network.ExpressRouteCircuit("exampleExpressRouteCircuit",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
service_provider_name="Equinix",
peering_location="Silicon Valley",
bandwidth_in_mbps=50,
sku=azure.network.ExpressRouteCircuitSkuArgs(
tier="Standard",
family="MeteredData",
),
allow_classic_operations=False,
tags={
"environment": "Production",
})
example_express_route_circuit_authorization = azure.network.ExpressRouteCircuitAuthorization("exampleExpressRouteCircuitAuthorization",
express_route_circuit_name=example_express_route_circuit.name,
resource_group_name=example_resource_group.name)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleExpressRouteCircuit = new azure.network.ExpressRouteCircuit("exampleExpressRouteCircuit", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
serviceProviderName: "Equinix",
peeringLocation: "Silicon Valley",
bandwidthInMbps: 50,
sku: {
tier: "Standard",
family: "MeteredData",
},
allowClassicOperations: false,
tags: {
environment: "Production",
},
});
const exampleExpressRouteCircuitAuthorization = new azure.network.ExpressRouteCircuitAuthorization("exampleExpressRouteCircuitAuthorization", {
expressRouteCircuitName: exampleExpressRouteCircuit.name,
resourceGroupName: exampleResourceGroup.name,
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleExpressRouteCircuit:
type: azure:network:ExpressRouteCircuit
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
serviceProviderName: Equinix
peeringLocation: Silicon Valley
bandwidthInMbps: 50
sku:
tier: Standard
family: MeteredData
allowClassicOperations: false
tags:
environment: Production
exampleExpressRouteCircuitAuthorization:
type: azure:network:ExpressRouteCircuitAuthorization
properties:
expressRouteCircuitName: ${exampleExpressRouteCircuit.name}
resourceGroupName: ${exampleResourceGroup.name}
Create ExpressRouteCircuitAuthorization Resource
new ExpressRouteCircuitAuthorization(name: string, args: ExpressRouteCircuitAuthorizationArgs, opts?: CustomResourceOptions);
@overload
def ExpressRouteCircuitAuthorization(resource_name: str,
opts: Optional[ResourceOptions] = None,
express_route_circuit_name: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None)
@overload
def ExpressRouteCircuitAuthorization(resource_name: str,
args: ExpressRouteCircuitAuthorizationArgs,
opts: Optional[ResourceOptions] = None)
func NewExpressRouteCircuitAuthorization(ctx *Context, name string, args ExpressRouteCircuitAuthorizationArgs, opts ...ResourceOption) (*ExpressRouteCircuitAuthorization, error)
public ExpressRouteCircuitAuthorization(string name, ExpressRouteCircuitAuthorizationArgs args, CustomResourceOptions? opts = null)
public ExpressRouteCircuitAuthorization(String name, ExpressRouteCircuitAuthorizationArgs args)
public ExpressRouteCircuitAuthorization(String name, ExpressRouteCircuitAuthorizationArgs args, CustomResourceOptions options)
type: azure:network:ExpressRouteCircuitAuthorization
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExpressRouteCircuitAuthorizationArgs
- 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 ExpressRouteCircuitAuthorizationArgs
- 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 ExpressRouteCircuitAuthorizationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExpressRouteCircuitAuthorizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExpressRouteCircuitAuthorizationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ExpressRouteCircuitAuthorization 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 ExpressRouteCircuitAuthorization resource accepts the following input properties:
- Express
Route stringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- Name string
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- Express
Route stringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- Name string
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- express
Route StringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- resource
Group StringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- name String
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- express
Route stringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- resource
Group stringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- name string
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- express_
route_ strcircuit_ name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- name str
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- express
Route StringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- resource
Group StringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- name String
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExpressRouteCircuitAuthorization resource produces the following output properties:
- string
The Authorization Key.
- string
The authorization use status.
- Id string
The provider-assigned unique ID for this managed resource.
- string
The Authorization Key.
- string
The authorization use status.
- Id string
The provider-assigned unique ID for this managed resource.
- String
The Authorization Key.
- String
The authorization use status.
- id String
The provider-assigned unique ID for this managed resource.
- string
The Authorization Key.
- string
The authorization use status.
- id string
The provider-assigned unique ID for this managed resource.
- str
The Authorization Key.
- str
The authorization use status.
- id str
The provider-assigned unique ID for this managed resource.
- String
The Authorization Key.
- String
The authorization use status.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing ExpressRouteCircuitAuthorization Resource
Get an existing ExpressRouteCircuitAuthorization 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?: ExpressRouteCircuitAuthorizationState, opts?: CustomResourceOptions): ExpressRouteCircuitAuthorization
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authorization_key: Optional[str] = None,
authorization_use_status: Optional[str] = None,
express_route_circuit_name: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None) -> ExpressRouteCircuitAuthorization
func GetExpressRouteCircuitAuthorization(ctx *Context, name string, id IDInput, state *ExpressRouteCircuitAuthorizationState, opts ...ResourceOption) (*ExpressRouteCircuitAuthorization, error)
public static ExpressRouteCircuitAuthorization Get(string name, Input<string> id, ExpressRouteCircuitAuthorizationState? state, CustomResourceOptions? opts = null)
public static ExpressRouteCircuitAuthorization get(String name, Output<String> id, ExpressRouteCircuitAuthorizationState 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.
- string
The Authorization Key.
- string
The authorization use status.
- Express
Route stringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- Name string
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- string
The Authorization Key.
- string
The authorization use status.
- Express
Route stringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- Name string
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- String
The Authorization Key.
- String
The authorization use status.
- express
Route StringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- name String
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- resource
Group StringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- string
The Authorization Key.
- string
The authorization use status.
- express
Route stringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- name string
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- resource
Group stringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- str
The Authorization Key.
- str
The authorization use status.
- express_
route_ strcircuit_ name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- name str
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
- String
The Authorization Key.
- String
The authorization use status.
- express
Route StringCircuit Name The name of the Express Route Circuit in which to create the Authorization. Changing this forces a new resource to be created.
- name String
The name of the ExpressRoute circuit. Changing this forces a new resource to be created.
- resource
Group StringName The name of the resource group in which to create the ExpressRoute circuit. Changing this forces a new resource to be created.
Import
ExpressRoute Circuit Authorizations can be imported using the resource id
, e.g.
$ pulumi import azure:network/expressRouteCircuitAuthorization:ExpressRouteCircuitAuthorization auth1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/expressRouteCircuits/myExpressRoute/authorizations/auth1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.