purple-train-14007
05/03/2021, 9:39 PMtall-librarian-49374
05/03/2021, 9:43 PMExpressRouteCircuit
resource does sound to me like it would do it but I guess you ruled it out?purple-train-14007
05/03/2021, 9:47 PMtall-librarian-49374
05/03/2021, 9:50 PMMicrosoft.Network/expressRouteCircuits
is the same resource as https://www.pulumi.com/docs/reference/pkg/azure-native/network/expressroutecircuit/purple-train-14007
05/03/2021, 9:50 PMconst expressRoutePortUSA = new azure_native.network.ExpressRoutePort(usCircuitname, {
bandwidthInGbps: 100,
encapsulation: "QinQ",
expressRoutePortName: usCircuitname,
location: "WestUS",
peeringLocation: "Seattle",
resourceGroupName: RG,
});
const USExpressRouteCircuit = new azure_native.network.ExpressRouteCircuit( usCircuitname, {
allowClassicOperations: false,
authorizations: [],
circuitName: usCircuitname,
location: "WestUS",
peerings: [],
resourceGroupName: RG,
serviceProviderProperties: {
bandwidthInMbps: 1000,
peeringLocation: "Seattle",
serviceProviderName: "Equinix",
},
sku: {
family: "metered",
name: "Standard",
tier: "Standard",
},
});
azure-native:network:ExpressRoutePort (USDomainServicesCircuit):
error: Code="InvalidResourceType" Message="The resource type could not be found in the namespace 'Microsoft.Network' for api version '2020-08-01'."
tall-librarian-49374
05/03/2021, 9:58 PMnew azure_native.network.v20190201.ExpressRoutePort
purple-train-14007
05/03/2021, 9:58 PMtall-librarian-49374
05/03/2021, 9:59 PMpurple-train-14007
05/03/2021, 10:01 PMerror: Code="InvalidRequestFormat" Message="Cannot parse the request." Details=[{"code":"InvalidJson","message":"Error converting value \"Unlimited\" to type 'Microsoft.WindowsAzure.Networking.Nrp.Frontend.Contract.Csm.Public.ExpressRouteCircuitSkuFamily'. Path 'sku.family', line 1, position 241."},{"code":"InvalidJson","message":"Error converting value \"Premium\" to type 'Microsoft.WindowsAzure.Networking.Nrp.Frontend.Contract.Csm.Public.ExpressRouteCircuitSkuName'. Path 'sku.name', line 1, position 258."}]
tall-librarian-49374
05/04/2021, 3:30 PMpurple-train-14007
05/04/2021, 3:54 PMtall-librarian-49374
05/04/2021, 4:00 PMpurple-train-14007
05/04/2021, 4:02 PM