outscale.NetPeering
Explore with Pulumi AI
Manages a Net peering.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resources
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const net01 = new outscale.Net("net01", {ipRange: "10.10.0.0/24"});
const net02 = new outscale.Net("net02", {ipRange: "10.31.0.0/16"});
import pulumi
import pulumi_outscale as outscale
net01 = outscale.Net("net01", ip_range="10.10.0.0/24")
net02 = outscale.Net("net02", ip_range="10.31.0.0/16")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewNet(ctx, "net01", &outscale.NetArgs{
IpRange: pulumi.String("10.10.0.0/24"),
})
if err != nil {
return err
}
_, err = outscale.NewNet(ctx, "net02", &outscale.NetArgs{
IpRange: pulumi.String("10.31.0.0/16"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var net01 = new Outscale.Net("net01", new()
{
IpRange = "10.10.0.0/24",
});
var net02 = new Outscale.Net("net02", new()
{
IpRange = "10.31.0.0/16",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Net;
import com.pulumi.outscale.NetArgs;
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 net01 = new Net("net01", NetArgs.builder()
.ipRange("10.10.0.0/24")
.build());
var net02 = new Net("net02", NetArgs.builder()
.ipRange("10.31.0.0/16")
.build());
}
}
resources:
net01:
type: outscale:Net
properties:
ipRange: 10.10.0.0/24
net02:
type: outscale:Net
properties:
ipRange: 10.31.0.0/16
Peer Nets
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const netPeering01 = new outscale.NetPeering("netPeering01", {
accepterNetId: outscale_net.net01.net_id,
sourceNetId: outscale_net.net02.net_id,
});
import pulumi
import pulumi_outscale as outscale
net_peering01 = outscale.NetPeering("netPeering01",
accepter_net_id=outscale_net["net01"]["net_id"],
source_net_id=outscale_net["net02"]["net_id"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewNetPeering(ctx, "netPeering01", &outscale.NetPeeringArgs{
AccepterNetId: pulumi.Any(outscale_net.Net01.Net_id),
SourceNetId: pulumi.Any(outscale_net.Net02.Net_id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var netPeering01 = new Outscale.NetPeering("netPeering01", new()
{
AccepterNetId = outscale_net.Net01.Net_id,
SourceNetId = outscale_net.Net02.Net_id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.NetPeering;
import com.pulumi.outscale.NetPeeringArgs;
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 netPeering01 = new NetPeering("netPeering01", NetPeeringArgs.builder()
.accepterNetId(outscale_net.net01().net_id())
.sourceNetId(outscale_net.net02().net_id())
.build());
}
}
resources:
netPeering01:
type: outscale:NetPeering
properties:
accepterNetId: ${outscale_net.net01.net_id}
sourceNetId: ${outscale_net.net02.net_id}
Create NetPeering Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetPeering(name: string, args: NetPeeringArgs, opts?: CustomResourceOptions);
@overload
def NetPeering(resource_name: str,
args: NetPeeringArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetPeering(resource_name: str,
opts: Optional[ResourceOptions] = None,
accepter_net_id: Optional[str] = None,
accepter_owner_id: Optional[str] = None,
source_net_id: Optional[str] = None,
outscale_net_peering_id: Optional[str] = None,
source_net_account_id: Optional[str] = None,
tags: Optional[Sequence[NetPeeringTagArgs]] = None)
func NewNetPeering(ctx *Context, name string, args NetPeeringArgs, opts ...ResourceOption) (*NetPeering, error)
public NetPeering(string name, NetPeeringArgs args, CustomResourceOptions? opts = null)
public NetPeering(String name, NetPeeringArgs args)
public NetPeering(String name, NetPeeringArgs args, CustomResourceOptions options)
type: outscale:NetPeering
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 NetPeeringArgs
- 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 NetPeeringArgs
- 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 NetPeeringArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetPeeringArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetPeeringArgs
- 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 netPeeringResource = new Outscale.NetPeering("netPeeringResource", new()
{
AccepterNetId = "string",
AccepterOwnerId = "string",
SourceNetId = "string",
OutscaleNetPeeringId = "string",
SourceNetAccountId = "string",
Tags = new[]
{
new Outscale.Inputs.NetPeeringTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := outscale.NewNetPeering(ctx, "netPeeringResource", &outscale.NetPeeringArgs{
AccepterNetId: pulumi.String("string"),
AccepterOwnerId: pulumi.String("string"),
SourceNetId: pulumi.String("string"),
OutscaleNetPeeringId: pulumi.String("string"),
SourceNetAccountId: pulumi.String("string"),
Tags: .NetPeeringTagArray{
&.NetPeeringTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var netPeeringResource = new NetPeering("netPeeringResource", NetPeeringArgs.builder()
.accepterNetId("string")
.accepterOwnerId("string")
.sourceNetId("string")
.outscaleNetPeeringId("string")
.sourceNetAccountId("string")
.tags(NetPeeringTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
net_peering_resource = outscale.NetPeering("netPeeringResource",
accepter_net_id="string",
accepter_owner_id="string",
source_net_id="string",
outscale_net_peering_id="string",
source_net_account_id="string",
tags=[{
"key": "string",
"value": "string",
}])
const netPeeringResource = new outscale.NetPeering("netPeeringResource", {
accepterNetId: "string",
accepterOwnerId: "string",
sourceNetId: "string",
outscaleNetPeeringId: "string",
sourceNetAccountId: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: outscale:NetPeering
properties:
accepterNetId: string
accepterOwnerId: string
outscaleNetPeeringId: string
sourceNetAccountId: string
sourceNetId: string
tags:
- key: string
value: string
NetPeering 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 NetPeering resource accepts the following input properties:
- Accepter
Net stringId - The ID of the Net you want to connect with.
- Accepter
Owner stringId - Source
Net stringId - The ID of the Net you send the peering request from.
- Outscale
Net stringPeering Id - Source
Net stringAccount Id - List<Net
Peering Tag> - A tag to add to this resource. You can specify this argument several times.
- Accepter
Net stringId - The ID of the Net you want to connect with.
- Accepter
Owner stringId - Source
Net stringId - The ID of the Net you send the peering request from.
- Outscale
Net stringPeering Id - Source
Net stringAccount Id - []Net
Peering Tag Args - A tag to add to this resource. You can specify this argument several times.
- accepter
Net StringId - The ID of the Net you want to connect with.
- accepter
Owner StringId - source
Net StringId - The ID of the Net you send the peering request from.
- outscale
Net StringPeering Id - source
Net StringAccount Id - List<Net
Peering Tag> - A tag to add to this resource. You can specify this argument several times.
- accepter
Net stringId - The ID of the Net you want to connect with.
- accepter
Owner stringId - source
Net stringId - The ID of the Net you send the peering request from.
- outscale
Net stringPeering Id - source
Net stringAccount Id - Net
Peering Tag[] - A tag to add to this resource. You can specify this argument several times.
- accepter_
net_ strid - The ID of the Net you want to connect with.
- accepter_
owner_ strid - source_
net_ strid - The ID of the Net you send the peering request from.
- outscale_
net_ strpeering_ id - source_
net_ straccount_ id - Sequence[Net
Peering Tag Args] - A tag to add to this resource. You can specify this argument several times.
- accepter
Net StringId - The ID of the Net you want to connect with.
- accepter
Owner StringId - source
Net StringId - The ID of the Net you send the peering request from.
- outscale
Net StringPeering Id - source
Net StringAccount Id - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetPeering resource produces the following output properties:
- Accepter
Nets List<NetPeering Accepter Net> - Information about the accepter Net.
- Id string
- The provider-assigned unique ID for this managed resource.
- Net
Peering stringId - The ID of the Net peering.
- Request
Id string - Source
Nets List<NetPeering Source Net> - Information about the source Net.
- States
List<Net
Peering State> - Information about the state of the Net peering.
- Accepter
Nets []NetPeering Accepter Net - Information about the accepter Net.
- Id string
- The provider-assigned unique ID for this managed resource.
- Net
Peering stringId - The ID of the Net peering.
- Request
Id string - Source
Nets []NetPeering Source Net - Information about the source Net.
- States
[]Net
Peering State Type - Information about the state of the Net peering.
- accepter
Nets List<NetPeering Accepter Net> - Information about the accepter Net.
- id String
- The provider-assigned unique ID for this managed resource.
- net
Peering StringId - The ID of the Net peering.
- request
Id String - source
Nets List<NetPeering Source Net> - Information about the source Net.
- states
List<Net
Peering State> - Information about the state of the Net peering.
- accepter
Nets NetPeering Accepter Net[] - Information about the accepter Net.
- id string
- The provider-assigned unique ID for this managed resource.
- net
Peering stringId - The ID of the Net peering.
- request
Id string - source
Nets NetPeering Source Net[] - Information about the source Net.
- states
Net
Peering State[] - Information about the state of the Net peering.
- accepter_
nets Sequence[NetPeering Accepter Net] - Information about the accepter Net.
- id str
- The provider-assigned unique ID for this managed resource.
- net_
peering_ strid - The ID of the Net peering.
- request_
id str - source_
nets Sequence[NetPeering Source Net] - Information about the source Net.
- states
Sequence[Net
Peering State] - Information about the state of the Net peering.
- accepter
Nets List<Property Map> - Information about the accepter Net.
- id String
- The provider-assigned unique ID for this managed resource.
- net
Peering StringId - The ID of the Net peering.
- request
Id String - source
Nets List<Property Map> - Information about the source Net.
- states List<Property Map>
- Information about the state of the Net peering.
Look up Existing NetPeering Resource
Get an existing NetPeering 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?: NetPeeringState, opts?: CustomResourceOptions): NetPeering
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accepter_net_id: Optional[str] = None,
accepter_nets: Optional[Sequence[NetPeeringAccepterNetArgs]] = None,
accepter_owner_id: Optional[str] = None,
net_peering_id: Optional[str] = None,
outscale_net_peering_id: Optional[str] = None,
request_id: Optional[str] = None,
source_net_account_id: Optional[str] = None,
source_net_id: Optional[str] = None,
source_nets: Optional[Sequence[NetPeeringSourceNetArgs]] = None,
states: Optional[Sequence[NetPeeringStateArgs]] = None,
tags: Optional[Sequence[NetPeeringTagArgs]] = None) -> NetPeering
func GetNetPeering(ctx *Context, name string, id IDInput, state *NetPeeringState, opts ...ResourceOption) (*NetPeering, error)
public static NetPeering Get(string name, Input<string> id, NetPeeringState? state, CustomResourceOptions? opts = null)
public static NetPeering get(String name, Output<String> id, NetPeeringState state, CustomResourceOptions options)
resources: _: type: outscale:NetPeering 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.
- Accepter
Net stringId - The ID of the Net you want to connect with.
- Accepter
Nets List<NetPeering Accepter Net> - Information about the accepter Net.
- Accepter
Owner stringId - Net
Peering stringId - The ID of the Net peering.
- Outscale
Net stringPeering Id - Request
Id string - Source
Net stringAccount Id - Source
Net stringId - The ID of the Net you send the peering request from.
- Source
Nets List<NetPeering Source Net> - Information about the source Net.
- States
List<Net
Peering State> - Information about the state of the Net peering.
- List<Net
Peering Tag> - A tag to add to this resource. You can specify this argument several times.
- Accepter
Net stringId - The ID of the Net you want to connect with.
- Accepter
Nets []NetPeering Accepter Net Args - Information about the accepter Net.
- Accepter
Owner stringId - Net
Peering stringId - The ID of the Net peering.
- Outscale
Net stringPeering Id - Request
Id string - Source
Net stringAccount Id - Source
Net stringId - The ID of the Net you send the peering request from.
- Source
Nets []NetPeering Source Net Args - Information about the source Net.
- States
[]Net
Peering State Type Args - Information about the state of the Net peering.
- []Net
Peering Tag Args - A tag to add to this resource. You can specify this argument several times.
- accepter
Net StringId - The ID of the Net you want to connect with.
- accepter
Nets List<NetPeering Accepter Net> - Information about the accepter Net.
- accepter
Owner StringId - net
Peering StringId - The ID of the Net peering.
- outscale
Net StringPeering Id - request
Id String - source
Net StringAccount Id - source
Net StringId - The ID of the Net you send the peering request from.
- source
Nets List<NetPeering Source Net> - Information about the source Net.
- states
List<Net
Peering State> - Information about the state of the Net peering.
- List<Net
Peering Tag> - A tag to add to this resource. You can specify this argument several times.
- accepter
Net stringId - The ID of the Net you want to connect with.
- accepter
Nets NetPeering Accepter Net[] - Information about the accepter Net.
- accepter
Owner stringId - net
Peering stringId - The ID of the Net peering.
- outscale
Net stringPeering Id - request
Id string - source
Net stringAccount Id - source
Net stringId - The ID of the Net you send the peering request from.
- source
Nets NetPeering Source Net[] - Information about the source Net.
- states
Net
Peering State[] - Information about the state of the Net peering.
- Net
Peering Tag[] - A tag to add to this resource. You can specify this argument several times.
- accepter_
net_ strid - The ID of the Net you want to connect with.
- accepter_
nets Sequence[NetPeering Accepter Net Args] - Information about the accepter Net.
- accepter_
owner_ strid - net_
peering_ strid - The ID of the Net peering.
- outscale_
net_ strpeering_ id - request_
id str - source_
net_ straccount_ id - source_
net_ strid - The ID of the Net you send the peering request from.
- source_
nets Sequence[NetPeering Source Net Args] - Information about the source Net.
- states
Sequence[Net
Peering State Args] - Information about the state of the Net peering.
- Sequence[Net
Peering Tag Args] - A tag to add to this resource. You can specify this argument several times.
- accepter
Net StringId - The ID of the Net you want to connect with.
- accepter
Nets List<Property Map> - Information about the accepter Net.
- accepter
Owner StringId - net
Peering StringId - The ID of the Net peering.
- outscale
Net StringPeering Id - request
Id String - source
Net StringAccount Id - source
Net StringId - The ID of the Net you send the peering request from.
- source
Nets List<Property Map> - Information about the source Net.
- states List<Property Map>
- Information about the state of the Net peering.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
Supporting Types
NetPeeringAccepterNet, NetPeeringAccepterNetArgs
- account_
id str - The account ID of the owner of the source Net.
- ip_
range str - The IP range for the source Net, in CIDR notation (for example,
10.0.0.0/16
). - net_
id str - The ID of the source Net.
NetPeeringSourceNet, NetPeeringSourceNetArgs
- account_
id str - The account ID of the owner of the source Net.
- ip_
range str - The IP range for the source Net, in CIDR notation (for example,
10.0.0.0/16
). - net_
id str - The ID of the source Net.
NetPeeringState, NetPeeringStateArgs
NetPeeringTag, NetPeeringTagArgs
Import
A Net peering can be imported using its ID. For example:
console
$ pulumi import outscale:index/netPeering:NetPeering ImportedNetPeering pcx-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.