Try AWS Native preview for resources not in the classic version.
aws.ec2.PeeringConnectionOptions
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a resource to manage VPC peering connection options.
NOTE on VPC Peering Connections and VPC Peering Connection Options: This provider provides both a standalone VPC Peering Connection Options and a VPC Peering Connection resource with
accepter
andrequester
attributes. Do not manage options for the same VPC peering connection in both a VPC Peering Connection resource and a VPC Peering Connection Options resource. Doing so will cause a conflict of options and will overwrite the options. Using a VPC Peering Connection Options resource decouples management of the connection options from management of the VPC Peering Connection and allows options to be set correctly in cross-region and cross-account scenarios.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const foo = new aws.ec2.Vpc("foo", {cidrBlock: "10.0.0.0/16"});
const bar = new aws.ec2.Vpc("bar", {cidrBlock: "10.1.0.0/16"});
const fooVpcPeeringConnection = new aws.ec2.VpcPeeringConnection("foo", {
vpcId: foo.id,
peerVpcId: bar.id,
autoAccept: true,
});
const fooPeeringConnectionOptions = new aws.ec2.PeeringConnectionOptions("foo", {
vpcPeeringConnectionId: fooVpcPeeringConnection.id,
accepter: {
allowRemoteVpcDnsResolution: true,
},
});
import pulumi
import pulumi_aws as aws
foo = aws.ec2.Vpc("foo", cidr_block="10.0.0.0/16")
bar = aws.ec2.Vpc("bar", cidr_block="10.1.0.0/16")
foo_vpc_peering_connection = aws.ec2.VpcPeeringConnection("foo",
vpc_id=foo.id,
peer_vpc_id=bar.id,
auto_accept=True)
foo_peering_connection_options = aws.ec2.PeeringConnectionOptions("foo",
vpc_peering_connection_id=foo_vpc_peering_connection.id,
accepter={
"allowRemoteVpcDnsResolution": True,
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
foo, err := ec2.NewVpc(ctx, "foo", &ec2.VpcArgs{
CidrBlock: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
bar, err := ec2.NewVpc(ctx, "bar", &ec2.VpcArgs{
CidrBlock: pulumi.String("10.1.0.0/16"),
})
if err != nil {
return err
}
fooVpcPeeringConnection, err := ec2.NewVpcPeeringConnection(ctx, "foo", &ec2.VpcPeeringConnectionArgs{
VpcId: foo.ID(),
PeerVpcId: bar.ID(),
AutoAccept: pulumi.Bool(true),
})
if err != nil {
return err
}
_, err = ec2.NewPeeringConnectionOptions(ctx, "foo", &ec2.PeeringConnectionOptionsArgs{
VpcPeeringConnectionId: fooVpcPeeringConnection.ID(),
Accepter: &ec2.PeeringConnectionOptionsAccepterArgs{
AllowRemoteVpcDnsResolution: pulumi.Bool(true),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var foo = new Aws.Ec2.Vpc("foo", new()
{
CidrBlock = "10.0.0.0/16",
});
var bar = new Aws.Ec2.Vpc("bar", new()
{
CidrBlock = "10.1.0.0/16",
});
var fooVpcPeeringConnection = new Aws.Ec2.VpcPeeringConnection("foo", new()
{
VpcId = foo.Id,
PeerVpcId = bar.Id,
AutoAccept = true,
});
var fooPeeringConnectionOptions = new Aws.Ec2.PeeringConnectionOptions("foo", new()
{
VpcPeeringConnectionId = fooVpcPeeringConnection.Id,
Accepter = new Aws.Ec2.Inputs.PeeringConnectionOptionsAccepterArgs
{
AllowRemoteVpcDnsResolution = true,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.Vpc;
import com.pulumi.aws.ec2.VpcArgs;
import com.pulumi.aws.ec2.VpcPeeringConnection;
import com.pulumi.aws.ec2.VpcPeeringConnectionArgs;
import com.pulumi.aws.ec2.PeeringConnectionOptions;
import com.pulumi.aws.ec2.PeeringConnectionOptionsArgs;
import com.pulumi.aws.ec2.inputs.PeeringConnectionOptionsAccepterArgs;
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()
.cidrBlock("10.0.0.0/16")
.build());
var bar = new Vpc("bar", VpcArgs.builder()
.cidrBlock("10.1.0.0/16")
.build());
var fooVpcPeeringConnection = new VpcPeeringConnection("fooVpcPeeringConnection", VpcPeeringConnectionArgs.builder()
.vpcId(foo.id())
.peerVpcId(bar.id())
.autoAccept(true)
.build());
var fooPeeringConnectionOptions = new PeeringConnectionOptions("fooPeeringConnectionOptions", PeeringConnectionOptionsArgs.builder()
.vpcPeeringConnectionId(fooVpcPeeringConnection.id())
.accepter(PeeringConnectionOptionsAccepterArgs.builder()
.allowRemoteVpcDnsResolution(true)
.build())
.build());
}
}
resources:
foo:
type: aws:ec2:Vpc
properties:
cidrBlock: 10.0.0.0/16
bar:
type: aws:ec2:Vpc
properties:
cidrBlock: 10.1.0.0/16
fooVpcPeeringConnection:
type: aws:ec2:VpcPeeringConnection
name: foo
properties:
vpcId: ${foo.id}
peerVpcId: ${bar.id}
autoAccept: true
fooPeeringConnectionOptions:
type: aws:ec2:PeeringConnectionOptions
name: foo
properties:
vpcPeeringConnectionId: ${fooVpcPeeringConnection.id}
accepter:
allowRemoteVpcDnsResolution: true
Cross-Account Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const main = new aws.ec2.Vpc("main", {
cidrBlock: "10.0.0.0/16",
enableDnsSupport: true,
enableDnsHostnames: true,
});
const peerVpc = new aws.ec2.Vpc("peer", {
cidrBlock: "10.1.0.0/16",
enableDnsSupport: true,
enableDnsHostnames: true,
});
const peer = aws.getCallerIdentity({});
// Requester's side of the connection.
const peerVpcPeeringConnection = new aws.ec2.VpcPeeringConnection("peer", {
vpcId: main.id,
peerVpcId: peerVpc.id,
peerOwnerId: peer.then(peer => peer.accountId),
autoAccept: false,
tags: {
Side: "Requester",
},
});
// Accepter's side of the connection.
const peerVpcPeeringConnectionAccepter = new aws.ec2.VpcPeeringConnectionAccepter("peer", {
vpcPeeringConnectionId: peerVpcPeeringConnection.id,
autoAccept: true,
tags: {
Side: "Accepter",
},
});
const requester = new aws.ec2.PeeringConnectionOptions("requester", {
vpcPeeringConnectionId: peerVpcPeeringConnectionAccepter.id,
requester: {
allowRemoteVpcDnsResolution: true,
},
});
const accepter = new aws.ec2.PeeringConnectionOptions("accepter", {
vpcPeeringConnectionId: peerVpcPeeringConnectionAccepter.id,
accepter: {
allowRemoteVpcDnsResolution: true,
},
});
import pulumi
import pulumi_aws as aws
main = aws.ec2.Vpc("main",
cidr_block="10.0.0.0/16",
enable_dns_support=True,
enable_dns_hostnames=True)
peer_vpc = aws.ec2.Vpc("peer",
cidr_block="10.1.0.0/16",
enable_dns_support=True,
enable_dns_hostnames=True)
peer = aws.get_caller_identity()
# Requester's side of the connection.
peer_vpc_peering_connection = aws.ec2.VpcPeeringConnection("peer",
vpc_id=main.id,
peer_vpc_id=peer_vpc.id,
peer_owner_id=peer.account_id,
auto_accept=False,
tags={
"Side": "Requester",
})
# Accepter's side of the connection.
peer_vpc_peering_connection_accepter = aws.ec2.VpcPeeringConnectionAccepter("peer",
vpc_peering_connection_id=peer_vpc_peering_connection.id,
auto_accept=True,
tags={
"Side": "Accepter",
})
requester = aws.ec2.PeeringConnectionOptions("requester",
vpc_peering_connection_id=peer_vpc_peering_connection_accepter.id,
requester={
"allowRemoteVpcDnsResolution": True,
})
accepter = aws.ec2.PeeringConnectionOptions("accepter",
vpc_peering_connection_id=peer_vpc_peering_connection_accepter.id,
accepter={
"allowRemoteVpcDnsResolution": True,
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := ec2.NewVpc(ctx, "main", &ec2.VpcArgs{
CidrBlock: pulumi.String("10.0.0.0/16"),
EnableDnsSupport: pulumi.Bool(true),
EnableDnsHostnames: pulumi.Bool(true),
})
if err != nil {
return err
}
peerVpc, err := ec2.NewVpc(ctx, "peer", &ec2.VpcArgs{
CidrBlock: pulumi.String("10.1.0.0/16"),
EnableDnsSupport: pulumi.Bool(true),
EnableDnsHostnames: pulumi.Bool(true),
})
if err != nil {
return err
}
peer, err := aws.GetCallerIdentity(ctx, nil, nil)
if err != nil {
return err
}
// Requester's side of the connection.
peerVpcPeeringConnection, err := ec2.NewVpcPeeringConnection(ctx, "peer", &ec2.VpcPeeringConnectionArgs{
VpcId: main.ID(),
PeerVpcId: peerVpc.ID(),
PeerOwnerId: pulumi.String(peer.AccountId),
AutoAccept: pulumi.Bool(false),
Tags: pulumi.StringMap{
"Side": pulumi.String("Requester"),
},
})
if err != nil {
return err
}
// Accepter's side of the connection.
peerVpcPeeringConnectionAccepter, err := ec2.NewVpcPeeringConnectionAccepter(ctx, "peer", &ec2.VpcPeeringConnectionAccepterArgs{
VpcPeeringConnectionId: peerVpcPeeringConnection.ID(),
AutoAccept: pulumi.Bool(true),
Tags: pulumi.StringMap{
"Side": pulumi.String("Accepter"),
},
})
if err != nil {
return err
}
_, err = ec2.NewPeeringConnectionOptions(ctx, "requester", &ec2.PeeringConnectionOptionsArgs{
VpcPeeringConnectionId: peerVpcPeeringConnectionAccepter.ID(),
Requester: &ec2.PeeringConnectionOptionsRequesterArgs{
AllowRemoteVpcDnsResolution: pulumi.Bool(true),
},
})
if err != nil {
return err
}
_, err = ec2.NewPeeringConnectionOptions(ctx, "accepter", &ec2.PeeringConnectionOptionsArgs{
VpcPeeringConnectionId: peerVpcPeeringConnectionAccepter.ID(),
Accepter: &ec2.PeeringConnectionOptionsAccepterArgs{
AllowRemoteVpcDnsResolution: pulumi.Bool(true),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var main = new Aws.Ec2.Vpc("main", new()
{
CidrBlock = "10.0.0.0/16",
EnableDnsSupport = true,
EnableDnsHostnames = true,
});
var peerVpc = new Aws.Ec2.Vpc("peer", new()
{
CidrBlock = "10.1.0.0/16",
EnableDnsSupport = true,
EnableDnsHostnames = true,
});
var peer = Aws.GetCallerIdentity.Invoke();
// Requester's side of the connection.
var peerVpcPeeringConnection = new Aws.Ec2.VpcPeeringConnection("peer", new()
{
VpcId = main.Id,
PeerVpcId = peerVpc.Id,
PeerOwnerId = peer.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId),
AutoAccept = false,
Tags =
{
{ "Side", "Requester" },
},
});
// Accepter's side of the connection.
var peerVpcPeeringConnectionAccepter = new Aws.Ec2.VpcPeeringConnectionAccepter("peer", new()
{
VpcPeeringConnectionId = peerVpcPeeringConnection.Id,
AutoAccept = true,
Tags =
{
{ "Side", "Accepter" },
},
});
var requester = new Aws.Ec2.PeeringConnectionOptions("requester", new()
{
VpcPeeringConnectionId = peerVpcPeeringConnectionAccepter.Id,
Requester = new Aws.Ec2.Inputs.PeeringConnectionOptionsRequesterArgs
{
AllowRemoteVpcDnsResolution = true,
},
});
var accepter = new Aws.Ec2.PeeringConnectionOptions("accepter", new()
{
VpcPeeringConnectionId = peerVpcPeeringConnectionAccepter.Id,
Accepter = new Aws.Ec2.Inputs.PeeringConnectionOptionsAccepterArgs
{
AllowRemoteVpcDnsResolution = true,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.Vpc;
import com.pulumi.aws.ec2.VpcArgs;
import com.pulumi.aws.AwsFunctions;
import com.pulumi.aws.inputs.GetCallerIdentityArgs;
import com.pulumi.aws.ec2.VpcPeeringConnection;
import com.pulumi.aws.ec2.VpcPeeringConnectionArgs;
import com.pulumi.aws.ec2.VpcPeeringConnectionAccepter;
import com.pulumi.aws.ec2.VpcPeeringConnectionAccepterArgs;
import com.pulumi.aws.ec2.PeeringConnectionOptions;
import com.pulumi.aws.ec2.PeeringConnectionOptionsArgs;
import com.pulumi.aws.ec2.inputs.PeeringConnectionOptionsRequesterArgs;
import com.pulumi.aws.ec2.inputs.PeeringConnectionOptionsAccepterArgs;
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 main = new Vpc("main", VpcArgs.builder()
.cidrBlock("10.0.0.0/16")
.enableDnsSupport(true)
.enableDnsHostnames(true)
.build());
var peerVpc = new Vpc("peerVpc", VpcArgs.builder()
.cidrBlock("10.1.0.0/16")
.enableDnsSupport(true)
.enableDnsHostnames(true)
.build());
final var peer = AwsFunctions.getCallerIdentity();
// Requester's side of the connection.
var peerVpcPeeringConnection = new VpcPeeringConnection("peerVpcPeeringConnection", VpcPeeringConnectionArgs.builder()
.vpcId(main.id())
.peerVpcId(peerVpc.id())
.peerOwnerId(peer.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId()))
.autoAccept(false)
.tags(Map.of("Side", "Requester"))
.build());
// Accepter's side of the connection.
var peerVpcPeeringConnectionAccepter = new VpcPeeringConnectionAccepter("peerVpcPeeringConnectionAccepter", VpcPeeringConnectionAccepterArgs.builder()
.vpcPeeringConnectionId(peerVpcPeeringConnection.id())
.autoAccept(true)
.tags(Map.of("Side", "Accepter"))
.build());
var requester = new PeeringConnectionOptions("requester", PeeringConnectionOptionsArgs.builder()
.vpcPeeringConnectionId(peerVpcPeeringConnectionAccepter.id())
.requester(PeeringConnectionOptionsRequesterArgs.builder()
.allowRemoteVpcDnsResolution(true)
.build())
.build());
var accepter = new PeeringConnectionOptions("accepter", PeeringConnectionOptionsArgs.builder()
.vpcPeeringConnectionId(peerVpcPeeringConnectionAccepter.id())
.accepter(PeeringConnectionOptionsAccepterArgs.builder()
.allowRemoteVpcDnsResolution(true)
.build())
.build());
}
}
resources:
main:
type: aws:ec2:Vpc
properties:
cidrBlock: 10.0.0.0/16
enableDnsSupport: true
enableDnsHostnames: true
peerVpc:
type: aws:ec2:Vpc
name: peer
properties:
cidrBlock: 10.1.0.0/16
enableDnsSupport: true
enableDnsHostnames: true
# Requester's side of the connection.
peerVpcPeeringConnection:
type: aws:ec2:VpcPeeringConnection
name: peer
properties:
vpcId: ${main.id}
peerVpcId: ${peerVpc.id}
peerOwnerId: ${peer.accountId}
autoAccept: false
tags:
Side: Requester
# Accepter's side of the connection.
peerVpcPeeringConnectionAccepter:
type: aws:ec2:VpcPeeringConnectionAccepter
name: peer
properties:
vpcPeeringConnectionId: ${peerVpcPeeringConnection.id}
autoAccept: true
tags:
Side: Accepter
requester:
type: aws:ec2:PeeringConnectionOptions
properties:
vpcPeeringConnectionId: ${peerVpcPeeringConnectionAccepter.id}
requester:
allowRemoteVpcDnsResolution: true
accepter:
type: aws:ec2:PeeringConnectionOptions
properties:
vpcPeeringConnectionId: ${peerVpcPeeringConnectionAccepter.id}
accepter:
allowRemoteVpcDnsResolution: true
variables:
peer:
fn::invoke:
Function: aws:getCallerIdentity
Arguments: {}
Create PeeringConnectionOptions Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PeeringConnectionOptions(name: string, args: PeeringConnectionOptionsArgs, opts?: CustomResourceOptions);
@overload
def PeeringConnectionOptions(resource_name: str,
args: PeeringConnectionOptionsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PeeringConnectionOptions(resource_name: str,
opts: Optional[ResourceOptions] = None,
vpc_peering_connection_id: Optional[str] = None,
accepter: Optional[PeeringConnectionOptionsAccepterArgs] = None,
requester: Optional[PeeringConnectionOptionsRequesterArgs] = None)
func NewPeeringConnectionOptions(ctx *Context, name string, args PeeringConnectionOptionsArgs, opts ...ResourceOption) (*PeeringConnectionOptions, error)
public PeeringConnectionOptions(string name, PeeringConnectionOptionsArgs args, CustomResourceOptions? opts = null)
public PeeringConnectionOptions(String name, PeeringConnectionOptionsArgs args)
public PeeringConnectionOptions(String name, PeeringConnectionOptionsArgs args, CustomResourceOptions options)
type: aws:ec2:PeeringConnectionOptions
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 PeeringConnectionOptionsArgs
- 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 PeeringConnectionOptionsArgs
- 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 PeeringConnectionOptionsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PeeringConnectionOptionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PeeringConnectionOptionsArgs
- 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 peeringConnectionOptionsResource = new Aws.Ec2.PeeringConnectionOptions("peeringConnectionOptionsResource", new()
{
VpcPeeringConnectionId = "string",
Accepter = new Aws.Ec2.Inputs.PeeringConnectionOptionsAccepterArgs
{
AllowRemoteVpcDnsResolution = false,
},
Requester = new Aws.Ec2.Inputs.PeeringConnectionOptionsRequesterArgs
{
AllowRemoteVpcDnsResolution = false,
},
});
example, err := ec2.NewPeeringConnectionOptions(ctx, "peeringConnectionOptionsResource", &ec2.PeeringConnectionOptionsArgs{
VpcPeeringConnectionId: pulumi.String("string"),
Accepter: &ec2.PeeringConnectionOptionsAccepterArgs{
AllowRemoteVpcDnsResolution: pulumi.Bool(false),
},
Requester: &ec2.PeeringConnectionOptionsRequesterArgs{
AllowRemoteVpcDnsResolution: pulumi.Bool(false),
},
})
var peeringConnectionOptionsResource = new PeeringConnectionOptions("peeringConnectionOptionsResource", PeeringConnectionOptionsArgs.builder()
.vpcPeeringConnectionId("string")
.accepter(PeeringConnectionOptionsAccepterArgs.builder()
.allowRemoteVpcDnsResolution(false)
.build())
.requester(PeeringConnectionOptionsRequesterArgs.builder()
.allowRemoteVpcDnsResolution(false)
.build())
.build());
peering_connection_options_resource = aws.ec2.PeeringConnectionOptions("peeringConnectionOptionsResource",
vpc_peering_connection_id="string",
accepter={
"allowRemoteVpcDnsResolution": False,
},
requester={
"allowRemoteVpcDnsResolution": False,
})
const peeringConnectionOptionsResource = new aws.ec2.PeeringConnectionOptions("peeringConnectionOptionsResource", {
vpcPeeringConnectionId: "string",
accepter: {
allowRemoteVpcDnsResolution: false,
},
requester: {
allowRemoteVpcDnsResolution: false,
},
});
type: aws:ec2:PeeringConnectionOptions
properties:
accepter:
allowRemoteVpcDnsResolution: false
requester:
allowRemoteVpcDnsResolution: false
vpcPeeringConnectionId: string
PeeringConnectionOptions 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 PeeringConnectionOptions resource accepts the following input properties:
- Vpc
Peering stringConnection Id - The ID of the requester VPC peering connection.
- Accepter
Peering
Connection Options Accepter - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- Requester
Peering
Connection Options Requester - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- Vpc
Peering stringConnection Id - The ID of the requester VPC peering connection.
- Accepter
Peering
Connection Options Accepter Args - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- Requester
Peering
Connection Options Requester Args - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc
Peering StringConnection Id - The ID of the requester VPC peering connection.
- accepter
Peering
Connection Options Accepter - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester
Peering
Connection Options Requester - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc
Peering stringConnection Id - The ID of the requester VPC peering connection.
- accepter
Peering
Connection Options Accepter - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester
Peering
Connection Options Requester - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc_
peering_ strconnection_ id - The ID of the requester VPC peering connection.
- accepter
Peering
Connection Options Accepter Args - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester
Peering
Connection Options Requester Args - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc
Peering StringConnection Id - The ID of the requester VPC peering connection.
- accepter Property Map
- An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester Property Map
- A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
Outputs
All input properties are implicitly available as output properties. Additionally, the PeeringConnectionOptions 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 PeeringConnectionOptions Resource
Get an existing PeeringConnectionOptions 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?: PeeringConnectionOptionsState, opts?: CustomResourceOptions): PeeringConnectionOptions
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accepter: Optional[PeeringConnectionOptionsAccepterArgs] = None,
requester: Optional[PeeringConnectionOptionsRequesterArgs] = None,
vpc_peering_connection_id: Optional[str] = None) -> PeeringConnectionOptions
func GetPeeringConnectionOptions(ctx *Context, name string, id IDInput, state *PeeringConnectionOptionsState, opts ...ResourceOption) (*PeeringConnectionOptions, error)
public static PeeringConnectionOptions Get(string name, Input<string> id, PeeringConnectionOptionsState? state, CustomResourceOptions? opts = null)
public static PeeringConnectionOptions get(String name, Output<String> id, PeeringConnectionOptionsState 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.
- Accepter
Peering
Connection Options Accepter - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- Requester
Peering
Connection Options Requester - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- Vpc
Peering stringConnection Id - The ID of the requester VPC peering connection.
- Accepter
Peering
Connection Options Accepter Args - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- Requester
Peering
Connection Options Requester Args - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- Vpc
Peering stringConnection Id - The ID of the requester VPC peering connection.
- accepter
Peering
Connection Options Accepter - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester
Peering
Connection Options Requester - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc
Peering StringConnection Id - The ID of the requester VPC peering connection.
- accepter
Peering
Connection Options Accepter - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester
Peering
Connection Options Requester - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc
Peering stringConnection Id - The ID of the requester VPC peering connection.
- accepter
Peering
Connection Options Accepter Args - An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester
Peering
Connection Options Requester Args - A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc_
peering_ strconnection_ id - The ID of the requester VPC peering connection.
- accepter Property Map
- An optional configuration block that allows for VPC Peering Connection options to be set for the VPC that acceptsthe peering connection (a maximum of one).
- requester Property Map
- A optional configuration block that allows for VPC Peering Connection options to be set for the VPC that requeststhe peering connection (a maximum of one).
- vpc
Peering StringConnection Id - The ID of the requester VPC peering connection.
Supporting Types
PeeringConnectionOptionsAccepter, PeeringConnectionOptionsAccepterArgs
- allow
Remote BooleanVpc Dns Resolution
- allow
Remote booleanVpc Dns Resolution
- allow
Remote BooleanVpc Dns Resolution
PeeringConnectionOptionsRequester, PeeringConnectionOptionsRequesterArgs
- allow
Remote BooleanVpc Dns Resolution
- allow
Remote booleanVpc Dns Resolution
- allow
Remote BooleanVpc Dns Resolution
Import
Using pulumi import
, import VPC Peering Connection Options using the VPC peering id
. For example:
$ pulumi import aws:ec2/peeringConnectionOptions:PeeringConnectionOptions foo pcx-111aaa111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.