1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. vpc
  5. PeerConnection
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.vpc.PeerConnection

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a Vpc Peer Peer Connection resource.

    Vpc peer connection.

    For information about Vpc Peer Peer Connection and how to use it, see What is Peer Connection.

    NOTE: Available since v1.186.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const _default = alicloud.getAccount({});
    const config = new pulumi.Config();
    const acceptingRegion = config.get("acceptingRegion") || "cn-beijing";
    const localVpc = new alicloud.vpc.Network("local_vpc", {
        vpcName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
    });
    const acceptingVpc = new alicloud.vpc.Network("accepting_vpc", {
        vpcName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
    });
    const defaultPeerConnection = new alicloud.vpc.PeerConnection("default", {
        peerConnectionName: "terraform-example",
        vpcId: localVpc.id,
        acceptingAliUid: _default.then(_default => _default.id),
        acceptingRegionId: acceptingRegion,
        acceptingVpcId: acceptingVpc.id,
        description: "terraform-example",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    default = alicloud.get_account()
    config = pulumi.Config()
    accepting_region = config.get("acceptingRegion")
    if accepting_region is None:
        accepting_region = "cn-beijing"
    local_vpc = alicloud.vpc.Network("local_vpc",
        vpc_name="terraform-example",
        cidr_block="172.17.3.0/24")
    accepting_vpc = alicloud.vpc.Network("accepting_vpc",
        vpc_name="terraform-example",
        cidr_block="172.17.3.0/24")
    default_peer_connection = alicloud.vpc.PeerConnection("default",
        peer_connection_name="terraform-example",
        vpc_id=local_vpc.id,
        accepting_ali_uid=default.id,
        accepting_region_id=accepting_region,
        accepting_vpc_id=accepting_vpc.id,
        description="terraform-example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"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 {
    		_default, err := alicloud.GetAccount(ctx, map[string]interface{}{}, nil)
    		if err != nil {
    			return err
    		}
    		cfg := config.New(ctx, "")
    		acceptingRegion := "cn-beijing"
    		if param := cfg.Get("acceptingRegion"); param != "" {
    			acceptingRegion = param
    		}
    		localVpc, err := vpc.NewNetwork(ctx, "local_vpc", &vpc.NetworkArgs{
    			VpcName:   pulumi.String("terraform-example"),
    			CidrBlock: pulumi.String("172.17.3.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		acceptingVpc, err := vpc.NewNetwork(ctx, "accepting_vpc", &vpc.NetworkArgs{
    			VpcName:   pulumi.String("terraform-example"),
    			CidrBlock: pulumi.String("172.17.3.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = vpc.NewPeerConnection(ctx, "default", &vpc.PeerConnectionArgs{
    			PeerConnectionName: pulumi.String("terraform-example"),
    			VpcId:              localVpc.ID(),
    			AcceptingAliUid:    pulumi.String(_default.Id),
    			AcceptingRegionId:  pulumi.String(acceptingRegion),
    			AcceptingVpcId:     acceptingVpc.ID(),
    			Description:        pulumi.String("terraform-example"),
    		})
    		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 @default = AliCloud.GetAccount.Invoke();
    
        var config = new Config();
        var acceptingRegion = config.Get("acceptingRegion") ?? "cn-beijing";
        var localVpc = new AliCloud.Vpc.Network("local_vpc", new()
        {
            VpcName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
        });
    
        var acceptingVpc = new AliCloud.Vpc.Network("accepting_vpc", new()
        {
            VpcName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
        });
    
        var defaultPeerConnection = new AliCloud.Vpc.PeerConnection("default", new()
        {
            PeerConnectionName = "terraform-example",
            VpcId = localVpc.Id,
            AcceptingAliUid = @default.Apply(@default => @default.Apply(getAccountResult => getAccountResult.Id)),
            AcceptingRegionId = acceptingRegion,
            AcceptingVpcId = acceptingVpc.Id,
            Description = "terraform-example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.AlicloudFunctions;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.PeerConnection;
    import com.pulumi.alicloud.vpc.PeerConnectionArgs;
    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 default = AlicloudFunctions.getAccount();
    
            final var acceptingRegion = config.get("acceptingRegion").orElse("cn-beijing");
            var localVpc = new Network("localVpc", NetworkArgs.builder()
                .vpcName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .build());
    
            var acceptingVpc = new Network("acceptingVpc", NetworkArgs.builder()
                .vpcName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .build());
    
            var defaultPeerConnection = new PeerConnection("defaultPeerConnection", PeerConnectionArgs.builder()
                .peerConnectionName("terraform-example")
                .vpcId(localVpc.id())
                .acceptingAliUid(default_.id())
                .acceptingRegionId(acceptingRegion)
                .acceptingVpcId(acceptingVpc.id())
                .description("terraform-example")
                .build());
    
        }
    }
    
    configuration:
      acceptingRegion:
        type: string
        default: cn-beijing
    resources:
      localVpc:
        type: alicloud:vpc:Network
        name: local_vpc
        properties:
          vpcName: terraform-example
          cidrBlock: 172.17.3.0/24
      acceptingVpc:
        type: alicloud:vpc:Network
        name: accepting_vpc
        properties:
          vpcName: terraform-example
          cidrBlock: 172.17.3.0/24
      defaultPeerConnection:
        type: alicloud:vpc:PeerConnection
        name: default
        properties:
          peerConnectionName: terraform-example
          vpcId: ${localVpc.id}
          acceptingAliUid: ${default.id}
          acceptingRegionId: ${acceptingRegion}
          acceptingVpcId: ${acceptingVpc.id}
          description: terraform-example
    variables:
      default:
        fn::invoke:
          function: alicloud:getAccount
          arguments: {}
    

    Create PeerConnection Resource

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

    Constructor syntax

    new PeerConnection(name: string, args: PeerConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def PeerConnection(resource_name: str,
                       args: PeerConnectionArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def PeerConnection(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       vpc_id: Optional[str] = None,
                       accepting_region_id: Optional[str] = None,
                       accepting_vpc_id: Optional[str] = None,
                       force_delete: Optional[bool] = None,
                       description: Optional[str] = None,
                       dry_run: Optional[bool] = None,
                       accepting_ali_uid: Optional[int] = None,
                       link_type: Optional[str] = None,
                       peer_connection_name: Optional[str] = None,
                       resource_group_id: Optional[str] = None,
                       status: Optional[str] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       bandwidth: Optional[int] = None)
    func NewPeerConnection(ctx *Context, name string, args PeerConnectionArgs, opts ...ResourceOption) (*PeerConnection, error)
    public PeerConnection(string name, PeerConnectionArgs args, CustomResourceOptions? opts = null)
    public PeerConnection(String name, PeerConnectionArgs args)
    public PeerConnection(String name, PeerConnectionArgs args, CustomResourceOptions options)
    
    type: alicloud:vpc:PeerConnection
    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 PeerConnectionArgs
    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 PeerConnectionArgs
    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 PeerConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PeerConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PeerConnectionArgs
    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 peerConnectionResource = new AliCloud.Vpc.PeerConnection("peerConnectionResource", new()
    {
        VpcId = "string",
        AcceptingRegionId = "string",
        AcceptingVpcId = "string",
        ForceDelete = false,
        Description = "string",
        DryRun = false,
        AcceptingAliUid = 0,
        LinkType = "string",
        PeerConnectionName = "string",
        ResourceGroupId = "string",
        Status = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Bandwidth = 0,
    });
    
    example, err := vpc.NewPeerConnection(ctx, "peerConnectionResource", &vpc.PeerConnectionArgs{
    	VpcId:              pulumi.String("string"),
    	AcceptingRegionId:  pulumi.String("string"),
    	AcceptingVpcId:     pulumi.String("string"),
    	ForceDelete:        pulumi.Bool(false),
    	Description:        pulumi.String("string"),
    	DryRun:             pulumi.Bool(false),
    	AcceptingAliUid:    pulumi.Int(0),
    	LinkType:           pulumi.String("string"),
    	PeerConnectionName: pulumi.String("string"),
    	ResourceGroupId:    pulumi.String("string"),
    	Status:             pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Bandwidth: pulumi.Int(0),
    })
    
    var peerConnectionResource = new PeerConnection("peerConnectionResource", PeerConnectionArgs.builder()
        .vpcId("string")
        .acceptingRegionId("string")
        .acceptingVpcId("string")
        .forceDelete(false)
        .description("string")
        .dryRun(false)
        .acceptingAliUid(0)
        .linkType("string")
        .peerConnectionName("string")
        .resourceGroupId("string")
        .status("string")
        .tags(Map.of("string", "string"))
        .bandwidth(0)
        .build());
    
    peer_connection_resource = alicloud.vpc.PeerConnection("peerConnectionResource",
        vpc_id="string",
        accepting_region_id="string",
        accepting_vpc_id="string",
        force_delete=False,
        description="string",
        dry_run=False,
        accepting_ali_uid=0,
        link_type="string",
        peer_connection_name="string",
        resource_group_id="string",
        status="string",
        tags={
            "string": "string",
        },
        bandwidth=0)
    
    const peerConnectionResource = new alicloud.vpc.PeerConnection("peerConnectionResource", {
        vpcId: "string",
        acceptingRegionId: "string",
        acceptingVpcId: "string",
        forceDelete: false,
        description: "string",
        dryRun: false,
        acceptingAliUid: 0,
        linkType: "string",
        peerConnectionName: "string",
        resourceGroupId: "string",
        status: "string",
        tags: {
            string: "string",
        },
        bandwidth: 0,
    });
    
    type: alicloud:vpc:PeerConnection
    properties:
        acceptingAliUid: 0
        acceptingRegionId: string
        acceptingVpcId: string
        bandwidth: 0
        description: string
        dryRun: false
        forceDelete: false
        linkType: string
        peerConnectionName: string
        resourceGroupId: string
        status: string
        tags:
            string: string
        vpcId: string
    

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

    AcceptingRegionId string
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    AcceptingVpcId string
    The ID of the accepter VPC.
    VpcId string
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    AcceptingAliUid int

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    Bandwidth int
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    Description string

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    ForceDelete bool
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    LinkType string
    LinkType. Valid values: Platinum, Gold, Silver.
    PeerConnectionName string

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    ResourceGroupId string

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    Status string
    The status of the resource
    Tags Dictionary<string, string>
    The tags of PrefixList.
    AcceptingRegionId string
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    AcceptingVpcId string
    The ID of the accepter VPC.
    VpcId string
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    AcceptingAliUid int

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    Bandwidth int
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    Description string

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    ForceDelete bool
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    LinkType string
    LinkType. Valid values: Platinum, Gold, Silver.
    PeerConnectionName string

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    ResourceGroupId string

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    Status string
    The status of the resource
    Tags map[string]string
    The tags of PrefixList.
    acceptingRegionId String
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    acceptingVpcId String
    The ID of the accepter VPC.
    vpcId String
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    acceptingAliUid Integer

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    bandwidth Integer
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    description String

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    forceDelete Boolean
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    linkType String
    LinkType. Valid values: Platinum, Gold, Silver.
    peerConnectionName String

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    resourceGroupId String

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status String
    The status of the resource
    tags Map<String,String>
    The tags of PrefixList.
    acceptingRegionId string
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    acceptingVpcId string
    The ID of the accepter VPC.
    vpcId string
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    acceptingAliUid number

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    bandwidth number
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    description string

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dryRun boolean
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    forceDelete boolean
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    linkType string
    LinkType. Valid values: Platinum, Gold, Silver.
    peerConnectionName string

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    resourceGroupId string

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status string
    The status of the resource
    tags {[key: string]: string}
    The tags of PrefixList.
    accepting_region_id str
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    accepting_vpc_id str
    The ID of the accepter VPC.
    vpc_id str
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    accepting_ali_uid int

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    bandwidth int
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    description str

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dry_run bool
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    force_delete bool
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    link_type str
    LinkType. Valid values: Platinum, Gold, Silver.
    peer_connection_name str

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    resource_group_id str

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status str
    The status of the resource
    tags Mapping[str, str]
    The tags of PrefixList.
    acceptingRegionId String
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    acceptingVpcId String
    The ID of the accepter VPC.
    vpcId String
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    acceptingAliUid Number

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    bandwidth Number
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    description String

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    forceDelete Boolean
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    linkType String
    LinkType. Valid values: Platinum, Gold, Silver.
    peerConnectionName String

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    resourceGroupId String

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status String
    The status of the resource
    tags Map<String>
    The tags of PrefixList.

    Outputs

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

    CreateTime string
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    Id string
    The provider-assigned unique ID for this managed resource.
    RegionId string
    The region ID of the resource to which you want to create and add tags.
    CreateTime string
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    Id string
    The provider-assigned unique ID for this managed resource.
    RegionId string
    The region ID of the resource to which you want to create and add tags.
    createTime String
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    id String
    The provider-assigned unique ID for this managed resource.
    regionId String
    The region ID of the resource to which you want to create and add tags.
    createTime string
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    id string
    The provider-assigned unique ID for this managed resource.
    regionId string
    The region ID of the resource to which you want to create and add tags.
    create_time str
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    id str
    The provider-assigned unique ID for this managed resource.
    region_id str
    The region ID of the resource to which you want to create and add tags.
    createTime String
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    id String
    The provider-assigned unique ID for this managed resource.
    regionId String
    The region ID of the resource to which you want to create and add tags.

    Look up Existing PeerConnection Resource

    Get an existing PeerConnection 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?: PeerConnectionState, opts?: CustomResourceOptions): PeerConnection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accepting_ali_uid: Optional[int] = None,
            accepting_region_id: Optional[str] = None,
            accepting_vpc_id: Optional[str] = None,
            bandwidth: Optional[int] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            dry_run: Optional[bool] = None,
            force_delete: Optional[bool] = None,
            link_type: Optional[str] = None,
            peer_connection_name: Optional[str] = None,
            region_id: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            vpc_id: Optional[str] = None) -> PeerConnection
    func GetPeerConnection(ctx *Context, name string, id IDInput, state *PeerConnectionState, opts ...ResourceOption) (*PeerConnection, error)
    public static PeerConnection Get(string name, Input<string> id, PeerConnectionState? state, CustomResourceOptions? opts = null)
    public static PeerConnection get(String name, Output<String> id, PeerConnectionState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:vpc:PeerConnection    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.
    The following state arguments are supported:
    AcceptingAliUid int

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    AcceptingRegionId string
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    AcceptingVpcId string
    The ID of the accepter VPC.
    Bandwidth int
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    CreateTime string
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    Description string

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    ForceDelete bool
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    LinkType string
    LinkType. Valid values: Platinum, Gold, Silver.
    PeerConnectionName string

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    RegionId string
    The region ID of the resource to which you want to create and add tags.
    ResourceGroupId string

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    Status string
    The status of the resource
    Tags Dictionary<string, string>
    The tags of PrefixList.
    VpcId string
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    AcceptingAliUid int

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    AcceptingRegionId string
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    AcceptingVpcId string
    The ID of the accepter VPC.
    Bandwidth int
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    CreateTime string
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    Description string

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    DryRun bool
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    ForceDelete bool
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    LinkType string
    LinkType. Valid values: Platinum, Gold, Silver.
    PeerConnectionName string

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    RegionId string
    The region ID of the resource to which you want to create and add tags.
    ResourceGroupId string

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    Status string
    The status of the resource
    Tags map[string]string
    The tags of PrefixList.
    VpcId string
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    acceptingAliUid Integer

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    acceptingRegionId String
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    acceptingVpcId String
    The ID of the accepter VPC.
    bandwidth Integer
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    createTime String
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    description String

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    forceDelete Boolean
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    linkType String
    LinkType. Valid values: Platinum, Gold, Silver.
    peerConnectionName String

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    regionId String
    The region ID of the resource to which you want to create and add tags.
    resourceGroupId String

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status String
    The status of the resource
    tags Map<String,String>
    The tags of PrefixList.
    vpcId String
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    acceptingAliUid number

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    acceptingRegionId string
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    acceptingVpcId string
    The ID of the accepter VPC.
    bandwidth number
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    createTime string
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    description string

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dryRun boolean
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    forceDelete boolean
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    linkType string
    LinkType. Valid values: Platinum, Gold, Silver.
    peerConnectionName string

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    regionId string
    The region ID of the resource to which you want to create and add tags.
    resourceGroupId string

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status string
    The status of the resource
    tags {[key: string]: string}
    The tags of PrefixList.
    vpcId string
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    accepting_ali_uid int

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    accepting_region_id str
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    accepting_vpc_id str
    The ID of the accepter VPC.
    bandwidth int
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    create_time str
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    description str

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dry_run bool
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    force_delete bool
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    link_type str
    LinkType. Valid values: Platinum, Gold, Silver.
    peer_connection_name str

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    region_id str
    The region ID of the resource to which you want to create and add tags.
    resource_group_id str

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status str
    The status of the resource
    tags Mapping[str, str]
    The tags of PrefixList.
    vpc_id str
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.
    acceptingAliUid Number

    The ID of the Alibaba Cloud account to which the accepter VPC belongs.

    • To create a VPC peering connection within your Alibaba Cloud account, enter the ID of your Alibaba Cloud account.
    • To create a VPC peering connection between your Alibaba Cloud account and another Alibaba Cloud account, enter the ID of the peer Alibaba Cloud account.

    NOTE: If the accepter is a RAM user, set AcceptingAliUid to the ID of the Alibaba Cloud account that created the RAM user.

    acceptingRegionId String
    The region ID of the accepter VPC of the VPC peering connection that you want to create.

    • To create an intra-region VPC peering connection, enter a region ID that is the same as that of the requester VPC.
    • To create an inter-region VPC peering connection, enter a region ID that is different from that of the requester VPC.
    acceptingVpcId String
    The ID of the accepter VPC.
    bandwidth Number
    The bandwidth of the VPC peering connection. Unit: Mbit/s. The value must be an integer greater than 0. Before you specify this parameter, make sure that you create an inter-region VPC peering connection.
    createTime String
    The creation time of the VPC peer connection. Use UTC time in the format' YYYY-MM-DDThh:mm:ssZ '.
    description String

    The description of the VPC peering connection.

    The description must be 2 to 256 characters in length. The description must start with a letter but cannot start with http:// or https://.

    dryRun Boolean
    Specifies whether to perform only a dry run, without performing the actual request. Valid values:
    forceDelete Boolean
    Specifies whether to forcefully delete the VPC peering connection. Valid values:
    linkType String
    LinkType. Valid values: Platinum, Gold, Silver.
    peerConnectionName String

    The name of the VPC peering connection.

    The name must be 2 to 128 characters in length, and can contain digits, underscores (_), and hyphens (-). It must start with a letter.

    regionId String
    The region ID of the resource to which you want to create and add tags.
    resourceGroupId String

    The ID of the new resource group.

    NOTE: You can use resource groups to manage resources within your Alibaba Cloud account by group. This helps you resolve issues such as resource grouping and permission management for your Alibaba Cloud account. For more information, see What is resource management?

    status String
    The status of the resource
    tags Map<String>
    The tags of PrefixList.
    vpcId String
    The ID of the requester VPC or accepter VPC of the VPC peering connection that you want to query.

    Import

    Vpc Peer Peer Connection can be imported using the id, e.g.

    $ pulumi import alicloud:vpc/peerConnection:PeerConnection example <id>
    

    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.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi