ucloud.VpcPeeringConnection
Explore with Pulumi AI
Provides an VPC Peering Connection for establishing a connection between multiple VPC.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ucloud from "@pulumi/ucloud";
const foo = new ucloud.Vpc("foo", {
tag: "tf-example",
cidrBlocks: ["192.168.0.0/16"],
});
const bar = new ucloud.Vpc("bar", {
tag: "tf-example",
cidrBlocks: ["10.10.0.0/16"],
});
const connection = new ucloud.VpcPeeringConnection("connection", {
vpcId: foo.vpcId,
peerVpcId: bar.vpcId,
});
import pulumi
import pulumi_ucloud as ucloud
foo = ucloud.Vpc("foo",
tag="tf-example",
cidr_blocks=["192.168.0.0/16"])
bar = ucloud.Vpc("bar",
tag="tf-example",
cidr_blocks=["10.10.0.0/16"])
connection = ucloud.VpcPeeringConnection("connection",
vpc_id=foo.vpc_id,
peer_vpc_id=bar.vpc_id)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ucloud/ucloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
foo, err := ucloud.NewVpc(ctx, "foo", &ucloud.VpcArgs{
Tag: pulumi.String("tf-example"),
CidrBlocks: pulumi.StringArray{
pulumi.String("192.168.0.0/16"),
},
})
if err != nil {
return err
}
bar, err := ucloud.NewVpc(ctx, "bar", &ucloud.VpcArgs{
Tag: pulumi.String("tf-example"),
CidrBlocks: pulumi.StringArray{
pulumi.String("10.10.0.0/16"),
},
})
if err != nil {
return err
}
_, err = ucloud.NewVpcPeeringConnection(ctx, "connection", &ucloud.VpcPeeringConnectionArgs{
VpcId: foo.VpcId,
PeerVpcId: bar.VpcId,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ucloud = Pulumi.Ucloud;
return await Deployment.RunAsync(() =>
{
var foo = new Ucloud.Vpc("foo", new()
{
Tag = "tf-example",
CidrBlocks = new[]
{
"192.168.0.0/16",
},
});
var bar = new Ucloud.Vpc("bar", new()
{
Tag = "tf-example",
CidrBlocks = new[]
{
"10.10.0.0/16",
},
});
var connection = new Ucloud.VpcPeeringConnection("connection", new()
{
VpcId = foo.VpcId,
PeerVpcId = bar.VpcId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ucloud.Vpc;
import com.pulumi.ucloud.VpcArgs;
import com.pulumi.ucloud.VpcPeeringConnection;
import com.pulumi.ucloud.VpcPeeringConnectionArgs;
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 foo = new Vpc("foo", VpcArgs.builder()
.tag("tf-example")
.cidrBlocks("192.168.0.0/16")
.build());
var bar = new Vpc("bar", VpcArgs.builder()
.tag("tf-example")
.cidrBlocks("10.10.0.0/16")
.build());
var connection = new VpcPeeringConnection("connection", VpcPeeringConnectionArgs.builder()
.vpcId(foo.vpcId())
.peerVpcId(bar.vpcId())
.build());
}
}
resources:
foo:
type: ucloud:Vpc
properties:
tag: tf-example
cidrBlocks:
- 192.168.0.0/16
bar:
type: ucloud:Vpc
properties:
tag: tf-example
cidrBlocks:
- 10.10.0.0/16
connection:
type: ucloud:VpcPeeringConnection
properties:
vpcId: ${foo.vpcId}
peerVpcId: ${bar.vpcId}
Create VpcPeeringConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpcPeeringConnection(name: string, args: VpcPeeringConnectionArgs, opts?: CustomResourceOptions);
@overload
def VpcPeeringConnection(resource_name: str,
args: VpcPeeringConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VpcPeeringConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
peer_vpc_id: Optional[str] = None,
vpc_id: Optional[str] = None,
peer_project_id: Optional[str] = None,
peer_region: Optional[str] = None,
vpc_peering_connection_id: Optional[str] = None)
func NewVpcPeeringConnection(ctx *Context, name string, args VpcPeeringConnectionArgs, opts ...ResourceOption) (*VpcPeeringConnection, error)
public VpcPeeringConnection(string name, VpcPeeringConnectionArgs args, CustomResourceOptions? opts = null)
public VpcPeeringConnection(String name, VpcPeeringConnectionArgs args)
public VpcPeeringConnection(String name, VpcPeeringConnectionArgs args, CustomResourceOptions options)
type: ucloud:VpcPeeringConnection
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 VpcPeeringConnectionArgs
- 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 VpcPeeringConnectionArgs
- 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 VpcPeeringConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcPeeringConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpcPeeringConnectionArgs
- 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 vpcPeeringConnectionResource = new Ucloud.VpcPeeringConnection("vpcPeeringConnectionResource", new()
{
PeerVpcId = "string",
VpcId = "string",
PeerProjectId = "string",
PeerRegion = "string",
VpcPeeringConnectionId = "string",
});
example, err := ucloud.NewVpcPeeringConnection(ctx, "vpcPeeringConnectionResource", &ucloud.VpcPeeringConnectionArgs{
PeerVpcId: pulumi.String("string"),
VpcId: pulumi.String("string"),
PeerProjectId: pulumi.String("string"),
PeerRegion: pulumi.String("string"),
VpcPeeringConnectionId: pulumi.String("string"),
})
var vpcPeeringConnectionResource = new VpcPeeringConnection("vpcPeeringConnectionResource", VpcPeeringConnectionArgs.builder()
.peerVpcId("string")
.vpcId("string")
.peerProjectId("string")
.peerRegion("string")
.vpcPeeringConnectionId("string")
.build());
vpc_peering_connection_resource = ucloud.VpcPeeringConnection("vpcPeeringConnectionResource",
peer_vpc_id="string",
vpc_id="string",
peer_project_id="string",
peer_region="string",
vpc_peering_connection_id="string")
const vpcPeeringConnectionResource = new ucloud.VpcPeeringConnection("vpcPeeringConnectionResource", {
peerVpcId: "string",
vpcId: "string",
peerProjectId: "string",
peerRegion: "string",
vpcPeeringConnectionId: "string",
});
type: ucloud:VpcPeeringConnection
properties:
peerProjectId: string
peerRegion: string
peerVpcId: string
vpcId: string
vpcPeeringConnectionId: string
VpcPeeringConnection 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 VpcPeeringConnection resource accepts the following input properties:
- Peer
Vpc stringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- Vpc
Id string - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- Peer
Project stringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- Peer
Region string - The region of the specific VPC Peering Connection to retrieve.
- Vpc
Peering stringConnection Id
- Peer
Vpc stringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- Vpc
Id string - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- Peer
Project stringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- Peer
Region string - The region of the specific VPC Peering Connection to retrieve.
- Vpc
Peering stringConnection Id
- peer
Vpc StringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc
Id String - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- peer
Project StringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer
Region String - The region of the specific VPC Peering Connection to retrieve.
- vpc
Peering StringConnection Id
- peer
Vpc stringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc
Id string - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- peer
Project stringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer
Region string - The region of the specific VPC Peering Connection to retrieve.
- vpc
Peering stringConnection Id
- peer_
vpc_ strid - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc_
id str - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- peer_
project_ strid - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer_
region str - The region of the specific VPC Peering Connection to retrieve.
- vpc_
peering_ strconnection_ id
- peer
Vpc StringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc
Id String - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- peer
Project StringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer
Region String - The region of the specific VPC Peering Connection to retrieve.
- vpc
Peering StringConnection Id
Outputs
All input properties are implicitly available as output properties. Additionally, the VpcPeeringConnection 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 VpcPeeringConnection Resource
Get an existing VpcPeeringConnection 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?: VpcPeeringConnectionState, opts?: CustomResourceOptions): VpcPeeringConnection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
peer_project_id: Optional[str] = None,
peer_region: Optional[str] = None,
peer_vpc_id: Optional[str] = None,
vpc_id: Optional[str] = None,
vpc_peering_connection_id: Optional[str] = None) -> VpcPeeringConnection
func GetVpcPeeringConnection(ctx *Context, name string, id IDInput, state *VpcPeeringConnectionState, opts ...ResourceOption) (*VpcPeeringConnection, error)
public static VpcPeeringConnection Get(string name, Input<string> id, VpcPeeringConnectionState? state, CustomResourceOptions? opts = null)
public static VpcPeeringConnection get(String name, Output<String> id, VpcPeeringConnectionState state, CustomResourceOptions options)
resources: _: type: ucloud:VpcPeeringConnection 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.
- Peer
Project stringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- Peer
Region string - The region of the specific VPC Peering Connection to retrieve.
- Peer
Vpc stringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- Vpc
Id string - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- Vpc
Peering stringConnection Id
- Peer
Project stringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- Peer
Region string - The region of the specific VPC Peering Connection to retrieve.
- Peer
Vpc stringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- Vpc
Id string - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- Vpc
Peering stringConnection Id
- peer
Project StringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer
Region String - The region of the specific VPC Peering Connection to retrieve.
- peer
Vpc StringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc
Id String - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- vpc
Peering StringConnection Id
- peer
Project stringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer
Region string - The region of the specific VPC Peering Connection to retrieve.
- peer
Vpc stringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc
Id string - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- vpc
Peering stringConnection Id
- peer_
project_ strid - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer_
region str - The region of the specific VPC Peering Connection to retrieve.
- peer_
vpc_ strid - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc_
id str - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- vpc_
peering_ strconnection_ id
- peer
Project StringId - The ID of accepter project of the specific VPC Peering Connection to retrieve.
- peer
Region String - The region of the specific VPC Peering Connection to retrieve.
- peer
Vpc StringId - The short ID of accepter VPC of the specific VPC Peering Connection to retrieve.
- vpc
Id String - The short of ID of the requester VPC of the specific VPC Peering Connection to retrieve.
- vpc
Peering StringConnection Id
Package Details
- Repository
- ucloud ucloud/terraform-provider-ucloud
- License
- Notes
- This Pulumi package is based on the
ucloud
Terraform Provider.