aws.odb.NetworkPeeringConnection
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.odb.NetworkPeeringConnection("example", {
displayName: "example",
odbNetworkId: "my-odb-network-id",
peerNetworkId: "my-vpc-id",
tags: {
env: "dev",
},
});
import pulumi
import pulumi_aws as aws
example = aws.odb.NetworkPeeringConnection("example",
display_name="example",
odb_network_id="my-odb-network-id",
peer_network_id="my-vpc-id",
tags={
"env": "dev",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := odb.NewNetworkPeeringConnection(ctx, "example", &odb.NetworkPeeringConnectionArgs{
DisplayName: pulumi.String("example"),
OdbNetworkId: pulumi.String("my-odb-network-id"),
PeerNetworkId: pulumi.String("my-vpc-id"),
Tags: pulumi.StringMap{
"env": pulumi.String("dev"),
},
})
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 example = new Aws.Odb.NetworkPeeringConnection("example", new()
{
DisplayName = "example",
OdbNetworkId = "my-odb-network-id",
PeerNetworkId = "my-vpc-id",
Tags =
{
{ "env", "dev" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.odb.NetworkPeeringConnection;
import com.pulumi.aws.odb.NetworkPeeringConnectionArgs;
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 example = new NetworkPeeringConnection("example", NetworkPeeringConnectionArgs.builder()
.displayName("example")
.odbNetworkId("my-odb-network-id")
.peerNetworkId("my-vpc-id")
.tags(Map.of("env", "dev"))
.build());
}
}
resources:
example:
type: aws:odb:NetworkPeeringConnection
properties:
displayName: example
odbNetworkId: my-odb-network-id
peerNetworkId: my-vpc-id
tags:
env: dev
Create NetworkPeeringConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkPeeringConnection(name: string, args: NetworkPeeringConnectionArgs, opts?: CustomResourceOptions);
@overload
def NetworkPeeringConnection(resource_name: str,
args: NetworkPeeringConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkPeeringConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
odb_network_id: Optional[str] = None,
peer_network_id: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[NetworkPeeringConnectionTimeoutsArgs] = None)
func NewNetworkPeeringConnection(ctx *Context, name string, args NetworkPeeringConnectionArgs, opts ...ResourceOption) (*NetworkPeeringConnection, error)
public NetworkPeeringConnection(string name, NetworkPeeringConnectionArgs args, CustomResourceOptions? opts = null)
public NetworkPeeringConnection(String name, NetworkPeeringConnectionArgs args)
public NetworkPeeringConnection(String name, NetworkPeeringConnectionArgs args, CustomResourceOptions options)
type: aws:odb:NetworkPeeringConnection
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 NetworkPeeringConnectionArgs
- 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 NetworkPeeringConnectionArgs
- 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 NetworkPeeringConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkPeeringConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkPeeringConnectionArgs
- 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 networkPeeringConnectionResource = new Aws.Odb.NetworkPeeringConnection("networkPeeringConnectionResource", new()
{
DisplayName = "string",
OdbNetworkId = "string",
PeerNetworkId = "string",
Region = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Odb.Inputs.NetworkPeeringConnectionTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := odb.NewNetworkPeeringConnection(ctx, "networkPeeringConnectionResource", &odb.NetworkPeeringConnectionArgs{
DisplayName: pulumi.String("string"),
OdbNetworkId: pulumi.String("string"),
PeerNetworkId: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &odb.NetworkPeeringConnectionTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var networkPeeringConnectionResource = new NetworkPeeringConnection("networkPeeringConnectionResource", NetworkPeeringConnectionArgs.builder()
.displayName("string")
.odbNetworkId("string")
.peerNetworkId("string")
.region("string")
.tags(Map.of("string", "string"))
.timeouts(NetworkPeeringConnectionTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
network_peering_connection_resource = aws.odb.NetworkPeeringConnection("networkPeeringConnectionResource",
display_name="string",
odb_network_id="string",
peer_network_id="string",
region="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const networkPeeringConnectionResource = new aws.odb.NetworkPeeringConnection("networkPeeringConnectionResource", {
displayName: "string",
odbNetworkId: "string",
peerNetworkId: "string",
region: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:odb:NetworkPeeringConnection
properties:
displayName: string
odbNetworkId: string
peerNetworkId: string
region: string
tags:
string: string
timeouts:
create: string
delete: string
update: string
NetworkPeeringConnection 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 NetworkPeeringConnection resource accepts the following input properties:
- Display
Name string - Odb
Network stringId - Peer
Network stringId - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Network
Peering Connection Timeouts
- Display
Name string - Odb
Network stringId - Peer
Network stringId - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Network
Peering Connection Timeouts Args
- display
Name String - odb
Network StringId - peer
Network StringId - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Peering Connection Timeouts
- display
Name string - odb
Network stringId - peer
Network stringId - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Peering Connection Timeouts
- display_
name str - odb_
network_ strid - peer_
network_ strid - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Peering Connection Timeouts Args
- display
Name String - odb
Network StringId - peer
Network StringId - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkPeeringConnection resource produces the following output properties:
- Arn string
- Created
At string - Created time of the ODB network peering connection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Odb
Network stringArn - ARN of the ODB network peering connection.
- Odb
Peering stringConnection Type - Type of the ODB peering connection.
- Peer
Network stringArn - ARN of the peer network peering connection.
- Percent
Progress double - Progress of the ODB network peering connection.
- Status string
- Status of the ODB network peering connection.
- Status
Reason string - The reason for the current status of the ODB peering connection.
- Dictionary<string, string>
- A map of tags assigned to the resource, including inherited tags.
- Arn string
- Created
At string - Created time of the ODB network peering connection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Odb
Network stringArn - ARN of the ODB network peering connection.
- Odb
Peering stringConnection Type - Type of the ODB peering connection.
- Peer
Network stringArn - ARN of the peer network peering connection.
- Percent
Progress float64 - Progress of the ODB network peering connection.
- Status string
- Status of the ODB network peering connection.
- Status
Reason string - The reason for the current status of the ODB peering connection.
- map[string]string
- A map of tags assigned to the resource, including inherited tags.
- arn String
- created
At String - Created time of the ODB network peering connection.
- id String
- The provider-assigned unique ID for this managed resource.
- odb
Network StringArn - ARN of the ODB network peering connection.
- odb
Peering StringConnection Type - Type of the ODB peering connection.
- peer
Network StringArn - ARN of the peer network peering connection.
- percent
Progress Double - Progress of the ODB network peering connection.
- status String
- Status of the ODB network peering connection.
- status
Reason String - The reason for the current status of the ODB peering connection.
- Map<String,String>
- A map of tags assigned to the resource, including inherited tags.
- arn string
- created
At string - Created time of the ODB network peering connection.
- id string
- The provider-assigned unique ID for this managed resource.
- odb
Network stringArn - ARN of the ODB network peering connection.
- odb
Peering stringConnection Type - Type of the ODB peering connection.
- peer
Network stringArn - ARN of the peer network peering connection.
- percent
Progress number - Progress of the ODB network peering connection.
- status string
- Status of the ODB network peering connection.
- status
Reason string - The reason for the current status of the ODB peering connection.
- {[key: string]: string}
- A map of tags assigned to the resource, including inherited tags.
- arn str
- created_
at str - Created time of the ODB network peering connection.
- id str
- The provider-assigned unique ID for this managed resource.
- odb_
network_ strarn - ARN of the ODB network peering connection.
- odb_
peering_ strconnection_ type - Type of the ODB peering connection.
- peer_
network_ strarn - ARN of the peer network peering connection.
- percent_
progress float - Progress of the ODB network peering connection.
- status str
- Status of the ODB network peering connection.
- status_
reason str - The reason for the current status of the ODB peering connection.
- Mapping[str, str]
- A map of tags assigned to the resource, including inherited tags.
- arn String
- created
At String - Created time of the ODB network peering connection.
- id String
- The provider-assigned unique ID for this managed resource.
- odb
Network StringArn - ARN of the ODB network peering connection.
- odb
Peering StringConnection Type - Type of the ODB peering connection.
- peer
Network StringArn - ARN of the peer network peering connection.
- percent
Progress Number - Progress of the ODB network peering connection.
- status String
- Status of the ODB network peering connection.
- status
Reason String - The reason for the current status of the ODB peering connection.
- Map<String>
- A map of tags assigned to the resource, including inherited tags.
Look up Existing NetworkPeeringConnection Resource
Get an existing NetworkPeeringConnection 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?: NetworkPeeringConnectionState, opts?: CustomResourceOptions): NetworkPeeringConnection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
created_at: Optional[str] = None,
display_name: Optional[str] = None,
odb_network_arn: Optional[str] = None,
odb_network_id: Optional[str] = None,
odb_peering_connection_type: Optional[str] = None,
peer_network_arn: Optional[str] = None,
peer_network_id: Optional[str] = None,
percent_progress: Optional[float] = None,
region: Optional[str] = None,
status: Optional[str] = None,
status_reason: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[NetworkPeeringConnectionTimeoutsArgs] = None) -> NetworkPeeringConnection
func GetNetworkPeeringConnection(ctx *Context, name string, id IDInput, state *NetworkPeeringConnectionState, opts ...ResourceOption) (*NetworkPeeringConnection, error)
public static NetworkPeeringConnection Get(string name, Input<string> id, NetworkPeeringConnectionState? state, CustomResourceOptions? opts = null)
public static NetworkPeeringConnection get(String name, Output<String> id, NetworkPeeringConnectionState state, CustomResourceOptions options)
resources: _: type: aws:odb:NetworkPeeringConnection 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.
- Arn string
- Created
At string - Created time of the ODB network peering connection.
- Display
Name string - Odb
Network stringArn - ARN of the ODB network peering connection.
- Odb
Network stringId - Odb
Peering stringConnection Type - Type of the ODB peering connection.
- Peer
Network stringArn - ARN of the peer network peering connection.
- Peer
Network stringId - Percent
Progress double - Progress of the ODB network peering connection.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Status string
- Status of the ODB network peering connection.
- Status
Reason string - The reason for the current status of the ODB peering connection.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including inherited tags.
- Timeouts
Network
Peering Connection Timeouts
- Arn string
- Created
At string - Created time of the ODB network peering connection.
- Display
Name string - Odb
Network stringArn - ARN of the ODB network peering connection.
- Odb
Network stringId - Odb
Peering stringConnection Type - Type of the ODB peering connection.
- Peer
Network stringArn - ARN of the peer network peering connection.
- Peer
Network stringId - Percent
Progress float64 - Progress of the ODB network peering connection.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Status string
- Status of the ODB network peering connection.
- Status
Reason string - The reason for the current status of the ODB peering connection.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including inherited tags.
- Timeouts
Network
Peering Connection Timeouts Args
- arn String
- created
At String - Created time of the ODB network peering connection.
- display
Name String - odb
Network StringArn - ARN of the ODB network peering connection.
- odb
Network StringId - odb
Peering StringConnection Type - Type of the ODB peering connection.
- peer
Network StringArn - ARN of the peer network peering connection.
- peer
Network StringId - percent
Progress Double - Progress of the ODB network peering connection.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status String
- Status of the ODB network peering connection.
- status
Reason String - The reason for the current status of the ODB peering connection.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including inherited tags.
- timeouts
Network
Peering Connection Timeouts
- arn string
- created
At string - Created time of the ODB network peering connection.
- display
Name string - odb
Network stringArn - ARN of the ODB network peering connection.
- odb
Network stringId - odb
Peering stringConnection Type - Type of the ODB peering connection.
- peer
Network stringArn - ARN of the peer network peering connection.
- peer
Network stringId - percent
Progress number - Progress of the ODB network peering connection.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status string
- Status of the ODB network peering connection.
- status
Reason string - The reason for the current status of the ODB peering connection.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including inherited tags.
- timeouts
Network
Peering Connection Timeouts
- arn str
- created_
at str - Created time of the ODB network peering connection.
- display_
name str - odb_
network_ strarn - ARN of the ODB network peering connection.
- odb_
network_ strid - odb_
peering_ strconnection_ type - Type of the ODB peering connection.
- peer_
network_ strarn - ARN of the peer network peering connection.
- peer_
network_ strid - percent_
progress float - Progress of the ODB network peering connection.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status str
- Status of the ODB network peering connection.
- status_
reason str - The reason for the current status of the ODB peering connection.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including inherited tags.
- timeouts
Network
Peering Connection Timeouts Args
- arn String
- created
At String - Created time of the ODB network peering connection.
- display
Name String - odb
Network StringArn - ARN of the ODB network peering connection.
- odb
Network StringId - odb
Peering StringConnection Type - Type of the ODB peering connection.
- peer
Network StringArn - ARN of the peer network peering connection.
- peer
Network StringId - percent
Progress Number - Progress of the ODB network peering connection.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status String
- Status of the ODB network peering connection.
- status
Reason String - The reason for the current status of the ODB peering connection.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including inherited tags.
- timeouts Property Map
Supporting Types
NetworkPeeringConnectionTimeouts, NetworkPeeringConnectionTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import
, import odb network peering using the id
. For example:
$ pulumi import aws:odb/networkPeeringConnection:NetworkPeeringConnection example example
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.