alicloud.expressconnect.RouterGrantAssociation
Explore with Pulumi AI
Provides a Express Connect Router Grant Association resource.
Network instances authorized to the leased line Gateway.
For information about Express Connect Router Grant Association and how to use it, see What is Grant Association.
NOTE: Available since v1.239.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const vpcId = config.get("vpcId") || "vpc-xxx";
const ecrOwnerUid = config.get("ecrOwnerUid") || "18xxx";
const ecrId = config.get("ecrId") || "ecr-xxx";
const region = config.get("region") || "cn-hangzhou";
const _default = new alicloud.expressconnect.RouterGrantAssociation("default", {
ecrId: ecrId,
instanceRegionId: region,
instanceId: vpcId,
ecrOwnerAliUid: ecrOwnerUid,
instanceType: "VPC",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
vpc_id = config.get("vpcId")
if vpc_id is None:
vpc_id = "vpc-xxx"
ecr_owner_uid = config.get("ecrOwnerUid")
if ecr_owner_uid is None:
ecr_owner_uid = "18xxx"
ecr_id = config.get("ecrId")
if ecr_id is None:
ecr_id = "ecr-xxx"
region = config.get("region")
if region is None:
region = "cn-hangzhou"
default = alicloud.expressconnect.RouterGrantAssociation("default",
ecr_id=ecr_id,
instance_region_id=region,
instance_id=vpc_id,
ecr_owner_ali_uid=ecr_owner_uid,
instance_type="VPC")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/expressconnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
vpcId := "vpc-xxx"
if param := cfg.Get("vpcId"); param != "" {
vpcId = param
}
ecrOwnerUid := "18xxx"
if param := cfg.Get("ecrOwnerUid"); param != "" {
ecrOwnerUid = param
}
ecrId := "ecr-xxx"
if param := cfg.Get("ecrId"); param != "" {
ecrId = param
}
region := "cn-hangzhou"
if param := cfg.Get("region"); param != "" {
region = param
}
_, err := expressconnect.NewRouterGrantAssociation(ctx, "default", &expressconnect.RouterGrantAssociationArgs{
EcrId: pulumi.String(ecrId),
InstanceRegionId: pulumi.String(region),
InstanceId: pulumi.String(vpcId),
EcrOwnerAliUid: pulumi.String(ecrOwnerUid),
InstanceType: pulumi.String("VPC"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var vpcId = config.Get("vpcId") ?? "vpc-xxx";
var ecrOwnerUid = config.Get("ecrOwnerUid") ?? "18xxx";
var ecrId = config.Get("ecrId") ?? "ecr-xxx";
var region = config.Get("region") ?? "cn-hangzhou";
var @default = new AliCloud.ExpressConnect.RouterGrantAssociation("default", new()
{
EcrId = ecrId,
InstanceRegionId = region,
InstanceId = vpcId,
EcrOwnerAliUid = ecrOwnerUid,
InstanceType = "VPC",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.expressconnect.RouterGrantAssociation;
import com.pulumi.alicloud.expressconnect.RouterGrantAssociationArgs;
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 config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
final var vpcId = config.get("vpcId").orElse("vpc-xxx");
final var ecrOwnerUid = config.get("ecrOwnerUid").orElse("18xxx");
final var ecrId = config.get("ecrId").orElse("ecr-xxx");
final var region = config.get("region").orElse("cn-hangzhou");
var default_ = new RouterGrantAssociation("default", RouterGrantAssociationArgs.builder()
.ecrId(ecrId)
.instanceRegionId(region)
.instanceId(vpcId)
.ecrOwnerAliUid(ecrOwnerUid)
.instanceType("VPC")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
vpcId:
type: string
default: vpc-xxx
ecrOwnerUid:
type: string
default: 18xxx
ecrId:
type: string
default: ecr-xxx
region:
type: string
default: cn-hangzhou
resources:
default:
type: alicloud:expressconnect:RouterGrantAssociation
properties:
ecrId: ${ecrId}
instanceRegionId: ${region}
instanceId: ${vpcId}
ecrOwnerAliUid: ${ecrOwnerUid}
instanceType: VPC
Create RouterGrantAssociation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RouterGrantAssociation(name: string, args: RouterGrantAssociationArgs, opts?: CustomResourceOptions);
@overload
def RouterGrantAssociation(resource_name: str,
args: RouterGrantAssociationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RouterGrantAssociation(resource_name: str,
opts: Optional[ResourceOptions] = None,
ecr_id: Optional[str] = None,
ecr_owner_ali_uid: Optional[int] = None,
instance_id: Optional[str] = None,
instance_region_id: Optional[str] = None,
instance_type: Optional[str] = None)
func NewRouterGrantAssociation(ctx *Context, name string, args RouterGrantAssociationArgs, opts ...ResourceOption) (*RouterGrantAssociation, error)
public RouterGrantAssociation(string name, RouterGrantAssociationArgs args, CustomResourceOptions? opts = null)
public RouterGrantAssociation(String name, RouterGrantAssociationArgs args)
public RouterGrantAssociation(String name, RouterGrantAssociationArgs args, CustomResourceOptions options)
type: alicloud:expressconnect:RouterGrantAssociation
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 RouterGrantAssociationArgs
- 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 RouterGrantAssociationArgs
- 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 RouterGrantAssociationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RouterGrantAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RouterGrantAssociationArgs
- 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 routerGrantAssociationResource = new AliCloud.ExpressConnect.RouterGrantAssociation("routerGrantAssociationResource", new()
{
EcrId = "string",
EcrOwnerAliUid = 0,
InstanceId = "string",
InstanceRegionId = "string",
InstanceType = "string",
});
example, err := expressconnect.NewRouterGrantAssociation(ctx, "routerGrantAssociationResource", &expressconnect.RouterGrantAssociationArgs{
EcrId: pulumi.String("string"),
EcrOwnerAliUid: pulumi.Int(0),
InstanceId: pulumi.String("string"),
InstanceRegionId: pulumi.String("string"),
InstanceType: pulumi.String("string"),
})
var routerGrantAssociationResource = new RouterGrantAssociation("routerGrantAssociationResource", RouterGrantAssociationArgs.builder()
.ecrId("string")
.ecrOwnerAliUid(0)
.instanceId("string")
.instanceRegionId("string")
.instanceType("string")
.build());
router_grant_association_resource = alicloud.expressconnect.RouterGrantAssociation("routerGrantAssociationResource",
ecr_id="string",
ecr_owner_ali_uid=0,
instance_id="string",
instance_region_id="string",
instance_type="string")
const routerGrantAssociationResource = new alicloud.expressconnect.RouterGrantAssociation("routerGrantAssociationResource", {
ecrId: "string",
ecrOwnerAliUid: 0,
instanceId: "string",
instanceRegionId: "string",
instanceType: "string",
});
type: alicloud:expressconnect:RouterGrantAssociation
properties:
ecrId: string
ecrOwnerAliUid: 0
instanceId: string
instanceRegionId: string
instanceType: string
RouterGrantAssociation 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 RouterGrantAssociation resource accepts the following input properties:
- Ecr
Id string - The ID of the associated Leased Line Gateway instance.
- Ecr
Owner intAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- Instance
Id string - The ID of the network instance.
- Instance
Region stringId - The ID of the region where the authorized network instance is located.
- Instance
Type string - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- Ecr
Id string - The ID of the associated Leased Line Gateway instance.
- Ecr
Owner intAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- Instance
Id string - The ID of the network instance.
- Instance
Region stringId - The ID of the region where the authorized network instance is located.
- Instance
Type string - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- ecr
Id String - The ID of the associated Leased Line Gateway instance.
- ecr
Owner IntegerAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance
Id String - The ID of the network instance.
- instance
Region StringId - The ID of the region where the authorized network instance is located.
- instance
Type String - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- ecr
Id string - The ID of the associated Leased Line Gateway instance.
- ecr
Owner numberAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance
Id string - The ID of the network instance.
- instance
Region stringId - The ID of the region where the authorized network instance is located.
- instance
Type string - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- ecr_
id str - The ID of the associated Leased Line Gateway instance.
- ecr_
owner_ intali_ uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance_
id str - The ID of the network instance.
- instance_
region_ strid - The ID of the region where the authorized network instance is located.
- instance_
type str - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- ecr
Id String - The ID of the associated Leased Line Gateway instance.
- ecr
Owner NumberAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance
Id String - The ID of the network instance.
- instance
Region StringId - The ID of the region where the authorized network instance is located.
- instance
Type String - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the RouterGrantAssociation resource produces the following output properties:
Look up Existing RouterGrantAssociation Resource
Get an existing RouterGrantAssociation 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?: RouterGrantAssociationState, opts?: CustomResourceOptions): RouterGrantAssociation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ecr_id: Optional[str] = None,
ecr_owner_ali_uid: Optional[int] = None,
instance_id: Optional[str] = None,
instance_region_id: Optional[str] = None,
instance_type: Optional[str] = None,
status: Optional[str] = None) -> RouterGrantAssociation
func GetRouterGrantAssociation(ctx *Context, name string, id IDInput, state *RouterGrantAssociationState, opts ...ResourceOption) (*RouterGrantAssociation, error)
public static RouterGrantAssociation Get(string name, Input<string> id, RouterGrantAssociationState? state, CustomResourceOptions? opts = null)
public static RouterGrantAssociation get(String name, Output<String> id, RouterGrantAssociationState state, CustomResourceOptions options)
resources: _: type: alicloud:expressconnect:RouterGrantAssociation 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.
- Ecr
Id string - The ID of the associated Leased Line Gateway instance.
- Ecr
Owner intAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- Instance
Id string - The ID of the network instance.
- Instance
Region stringId - The ID of the region where the authorized network instance is located.
- Instance
Type string - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- Status string
- The status of the resource
- Ecr
Id string - The ID of the associated Leased Line Gateway instance.
- Ecr
Owner intAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- Instance
Id string - The ID of the network instance.
- Instance
Region stringId - The ID of the region where the authorized network instance is located.
- Instance
Type string - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- Status string
- The status of the resource
- ecr
Id String - The ID of the associated Leased Line Gateway instance.
- ecr
Owner IntegerAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance
Id String - The ID of the network instance.
- instance
Region StringId - The ID of the region where the authorized network instance is located.
- instance
Type String - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- status String
- The status of the resource
- ecr
Id string - The ID of the associated Leased Line Gateway instance.
- ecr
Owner numberAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance
Id string - The ID of the network instance.
- instance
Region stringId - The ID of the region where the authorized network instance is located.
- instance
Type string - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- status string
- The status of the resource
- ecr_
id str - The ID of the associated Leased Line Gateway instance.
- ecr_
owner_ intali_ uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance_
id str - The ID of the network instance.
- instance_
region_ strid - The ID of the region where the authorized network instance is located.
- instance_
type str - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- status str
- The status of the resource
- ecr
Id String - The ID of the associated Leased Line Gateway instance.
- ecr
Owner NumberAli Uid - The ID of the Alibaba Cloud account (primary account) to which the leased line gateway instance is authorized.
- instance
Id String - The ID of the network instance.
- instance
Region StringId - The ID of the region where the authorized network instance is located.
- instance
Type String - The type of the network instance. Value:
VBR
: the VBR instance.VPC
: VPC instance.
- status String
- The status of the resource
Import
Express Connect Router Grant Association can be imported using the id, e.g.
$ pulumi import alicloud:expressconnect/routerGrantAssociation:RouterGrantAssociation example <ecr_id>:<instance_id>:<instance_region_id>:<ecr_owner_ali_uid>:<instance_type>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.