aws.networkmanager.CoreNetwork
Provides a core network resource.
Example Usage
Basic
using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.NetworkManager.CoreNetwork("example", new()
{
GlobalNetworkId = aws_networkmanager_global_network.Example.Id,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/networkmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkmanager.NewCoreNetwork(ctx, "example", &networkmanager.CoreNetworkArgs{
GlobalNetworkId: pulumi.Any(aws_networkmanager_global_network.Example.Id),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.CoreNetwork;
import com.pulumi.aws.networkmanager.CoreNetworkArgs;
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 CoreNetwork("example", CoreNetworkArgs.builder()
.globalNetworkId(aws_networkmanager_global_network.example().id())
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.CoreNetwork("example", global_network_id=aws_networkmanager_global_network["example"]["id"])
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.CoreNetwork("example", {globalNetworkId: aws_networkmanager_global_network.example.id});
resources:
example:
type: aws:networkmanager:CoreNetwork
properties:
globalNetworkId: ${aws_networkmanager_global_network.example.id}
With description
using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.NetworkManager.CoreNetwork("example", new()
{
GlobalNetworkId = aws_networkmanager_global_network.Example.Id,
Description = "example",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/networkmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkmanager.NewCoreNetwork(ctx, "example", &networkmanager.CoreNetworkArgs{
GlobalNetworkId: pulumi.Any(aws_networkmanager_global_network.Example.Id),
Description: pulumi.String("example"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.CoreNetwork;
import com.pulumi.aws.networkmanager.CoreNetworkArgs;
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 CoreNetwork("example", CoreNetworkArgs.builder()
.globalNetworkId(aws_networkmanager_global_network.example().id())
.description("example")
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.CoreNetwork("example",
global_network_id=aws_networkmanager_global_network["example"]["id"],
description="example")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.CoreNetwork("example", {
globalNetworkId: aws_networkmanager_global_network.example.id,
description: "example",
});
resources:
example:
type: aws:networkmanager:CoreNetwork
properties:
globalNetworkId: ${aws_networkmanager_global_network.example.id}
description: example
With policy document
using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.NetworkManager.CoreNetwork("example", new()
{
GlobalNetworkId = aws_networkmanager_global_network.Example.Id,
PolicyDocument = data.Aws_networkmanager_core_network_policy_document.Example.Json,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/networkmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkmanager.NewCoreNetwork(ctx, "example", &networkmanager.CoreNetworkArgs{
GlobalNetworkId: pulumi.Any(aws_networkmanager_global_network.Example.Id),
PolicyDocument: pulumi.Any(data.Aws_networkmanager_core_network_policy_document.Example.Json),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.CoreNetwork;
import com.pulumi.aws.networkmanager.CoreNetworkArgs;
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 CoreNetwork("example", CoreNetworkArgs.builder()
.globalNetworkId(aws_networkmanager_global_network.example().id())
.policyDocument(data.aws_networkmanager_core_network_policy_document().example().json())
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.CoreNetwork("example",
global_network_id=aws_networkmanager_global_network["example"]["id"],
policy_document=data["aws_networkmanager_core_network_policy_document"]["example"]["json"])
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.CoreNetwork("example", {
globalNetworkId: aws_networkmanager_global_network.example.id,
policyDocument: data.aws_networkmanager_core_network_policy_document.example.json,
});
resources:
example:
type: aws:networkmanager:CoreNetwork
properties:
globalNetworkId: ${aws_networkmanager_global_network.example.id}
policyDocument: ${data.aws_networkmanager_core_network_policy_document.example.json}
With tags
using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.NetworkManager.CoreNetwork("example", new()
{
GlobalNetworkId = aws_networkmanager_global_network.Example.Id,
Tags =
{
{ "hello", "world" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/networkmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkmanager.NewCoreNetwork(ctx, "example", &networkmanager.CoreNetworkArgs{
GlobalNetworkId: pulumi.Any(aws_networkmanager_global_network.Example.Id),
Tags: pulumi.StringMap{
"hello": pulumi.String("world"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.CoreNetwork;
import com.pulumi.aws.networkmanager.CoreNetworkArgs;
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 CoreNetwork("example", CoreNetworkArgs.builder()
.globalNetworkId(aws_networkmanager_global_network.example().id())
.tags(Map.of("hello", "world"))
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.CoreNetwork("example",
global_network_id=aws_networkmanager_global_network["example"]["id"],
tags={
"hello": "world",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.CoreNetwork("example", {
globalNetworkId: aws_networkmanager_global_network.example.id,
tags: {
hello: "world",
},
});
resources:
example:
type: aws:networkmanager:CoreNetwork
properties:
globalNetworkId: ${aws_networkmanager_global_network.example.id}
tags:
hello: world
Create CoreNetwork Resource
new CoreNetwork(name: string, args: CoreNetworkArgs, opts?: CustomResourceOptions);
@overload
def CoreNetwork(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
global_network_id: Optional[str] = None,
policy_document: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def CoreNetwork(resource_name: str,
args: CoreNetworkArgs,
opts: Optional[ResourceOptions] = None)
func NewCoreNetwork(ctx *Context, name string, args CoreNetworkArgs, opts ...ResourceOption) (*CoreNetwork, error)
public CoreNetwork(string name, CoreNetworkArgs args, CustomResourceOptions? opts = null)
public CoreNetwork(String name, CoreNetworkArgs args)
public CoreNetwork(String name, CoreNetworkArgs args, CustomResourceOptions options)
type: aws:networkmanager:CoreNetwork
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CoreNetworkArgs
- 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 CoreNetworkArgs
- 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 CoreNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CoreNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CoreNetworkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
CoreNetwork 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 CoreNetwork resource accepts the following input properties:
- Global
Network stringId The ID of the global network that a core network will be a part of.
- Description string
Description of the Core Network.
- Policy
Document string Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- Dictionary<string, string>
Key-value tags for the Core Network. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Global
Network stringId The ID of the global network that a core network will be a part of.
- Description string
Description of the Core Network.
- Policy
Document string Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- map[string]string
Key-value tags for the Core Network. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- global
Network StringId The ID of the global network that a core network will be a part of.
- description String
Description of the Core Network.
- policy
Document String Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- Map<String,String>
Key-value tags for the Core Network. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- global
Network stringId The ID of the global network that a core network will be a part of.
- description string
Description of the Core Network.
- policy
Document string Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- {[key: string]: string}
Key-value tags for the Core Network. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- global_
network_ strid The ID of the global network that a core network will be a part of.
- description str
Description of the Core Network.
- policy_
document str Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- Mapping[str, str]
Key-value tags for the Core Network. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- global
Network StringId The ID of the global network that a core network will be a part of.
- description String
Description of the Core Network.
- policy
Document String Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- Map<String>
Key-value tags for the Core Network. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the CoreNetwork resource produces the following output properties:
- Arn string
Core Network Amazon Resource Name (ARN).
- Created
At string Timestamp when a core network was created.
- Edges
List<Core
Network Edge> One or more blocks detailing the edges within a core network. Detailed below.
- Id string
The provider-assigned unique ID for this managed resource.
- Segments
List<Core
Network Segment> One or more blocks detailing the segments within a core network. Detailed below.
- State string
Current state of a core network.
- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
Core Network Amazon Resource Name (ARN).
- Created
At string Timestamp when a core network was created.
- Edges
[]Core
Network Edge One or more blocks detailing the edges within a core network. Detailed below.
- Id string
The provider-assigned unique ID for this managed resource.
- Segments
[]Core
Network Segment One or more blocks detailing the segments within a core network. Detailed below.
- State string
Current state of a core network.
- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
Core Network Amazon Resource Name (ARN).
- created
At String Timestamp when a core network was created.
- edges
List<Core
Network Edge> One or more blocks detailing the edges within a core network. Detailed below.
- id String
The provider-assigned unique ID for this managed resource.
- segments
List<Core
Network Segment> One or more blocks detailing the segments within a core network. Detailed below.
- state String
Current state of a core network.
- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
Core Network Amazon Resource Name (ARN).
- created
At string Timestamp when a core network was created.
- edges
Core
Network Edge[] One or more blocks detailing the edges within a core network. Detailed below.
- id string
The provider-assigned unique ID for this managed resource.
- segments
Core
Network Segment[] One or more blocks detailing the segments within a core network. Detailed below.
- state string
Current state of a core network.
- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
Core Network Amazon Resource Name (ARN).
- created_
at str Timestamp when a core network was created.
- edges
Sequence[Core
Network Edge] One or more blocks detailing the edges within a core network. Detailed below.
- id str
The provider-assigned unique ID for this managed resource.
- segments
Sequence[Core
Network Segment] One or more blocks detailing the segments within a core network. Detailed below.
- state str
Current state of a core network.
- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
Core Network Amazon Resource Name (ARN).
- created
At String Timestamp when a core network was created.
- edges List<Property Map>
One or more blocks detailing the edges within a core network. Detailed below.
- id String
The provider-assigned unique ID for this managed resource.
- segments List<Property Map>
One or more blocks detailing the segments within a core network. Detailed below.
- state String
Current state of a core network.
- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing CoreNetwork Resource
Get an existing CoreNetwork 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?: CoreNetworkState, opts?: CustomResourceOptions): CoreNetwork
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
edges: Optional[Sequence[CoreNetworkEdgeArgs]] = None,
global_network_id: Optional[str] = None,
policy_document: Optional[str] = None,
segments: Optional[Sequence[CoreNetworkSegmentArgs]] = None,
state: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> CoreNetwork
func GetCoreNetwork(ctx *Context, name string, id IDInput, state *CoreNetworkState, opts ...ResourceOption) (*CoreNetwork, error)
public static CoreNetwork Get(string name, Input<string> id, CoreNetworkState? state, CustomResourceOptions? opts = null)
public static CoreNetwork get(String name, Output<String> id, CoreNetworkState 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.
- Arn string
Core Network Amazon Resource Name (ARN).
- Created
At string Timestamp when a core network was created.
- Description string
Description of the Core Network.
- Edges
List<Core
Network Edge Args> One or more blocks detailing the edges within a core network. Detailed below.
- Global
Network stringId The ID of the global network that a core network will be a part of.
- Policy
Document string Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- Segments
List<Core
Network Segment Args> One or more blocks detailing the segments within a core network. Detailed below.
- State string
Current state of a core network.
- Dictionary<string, string>
Key-value tags for the Core Network. 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 those inherited from the provider
default_tags
configuration block.
- Arn string
Core Network Amazon Resource Name (ARN).
- Created
At string Timestamp when a core network was created.
- Description string
Description of the Core Network.
- Edges
[]Core
Network Edge Args One or more blocks detailing the edges within a core network. Detailed below.
- Global
Network stringId The ID of the global network that a core network will be a part of.
- Policy
Document string Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- Segments
[]Core
Network Segment Args One or more blocks detailing the segments within a core network. Detailed below.
- State string
Current state of a core network.
- map[string]string
Key-value tags for the Core Network. 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 those inherited from the provider
default_tags
configuration block.
- arn String
Core Network Amazon Resource Name (ARN).
- created
At String Timestamp when a core network was created.
- description String
Description of the Core Network.
- edges
List<Core
Network Edge Args> One or more blocks detailing the edges within a core network. Detailed below.
- global
Network StringId The ID of the global network that a core network will be a part of.
- policy
Document String Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- segments
List<Core
Network Segment Args> One or more blocks detailing the segments within a core network. Detailed below.
- state String
Current state of a core network.
- Map<String,String>
Key-value tags for the Core Network. 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 those inherited from the provider
default_tags
configuration block.
- arn string
Core Network Amazon Resource Name (ARN).
- created
At string Timestamp when a core network was created.
- description string
Description of the Core Network.
- edges
Core
Network Edge Args[] One or more blocks detailing the edges within a core network. Detailed below.
- global
Network stringId The ID of the global network that a core network will be a part of.
- policy
Document string Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- segments
Core
Network Segment Args[] One or more blocks detailing the segments within a core network. Detailed below.
- state string
Current state of a core network.
- {[key: string]: string}
Key-value tags for the Core Network. 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 those inherited from the provider
default_tags
configuration block.
- arn str
Core Network Amazon Resource Name (ARN).
- created_
at str Timestamp when a core network was created.
- description str
Description of the Core Network.
- edges
Sequence[Core
Network Edge Args] One or more blocks detailing the edges within a core network. Detailed below.
- global_
network_ strid The ID of the global network that a core network will be a part of.
- policy_
document str Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- segments
Sequence[Core
Network Segment Args] One or more blocks detailing the segments within a core network. Detailed below.
- state str
Current state of a core network.
- Mapping[str, str]
Key-value tags for the Core Network. 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 those inherited from the provider
default_tags
configuration block.
- arn String
Core Network Amazon Resource Name (ARN).
- created
At String Timestamp when a core network was created.
- description String
Description of the Core Network.
- edges List<Property Map>
One or more blocks detailing the edges within a core network. Detailed below.
- global
Network StringId The ID of the global network that a core network will be a part of.
- policy
Document String Policy document for creating a core network. Note that updating this argument will result in the new policy document version being set as the
LATEST
andLIVE
policy document. Refer to the Core network policies documentation for more information.- segments List<Property Map>
One or more blocks detailing the segments within a core network. Detailed below.
- state String
Current state of a core network.
- Map<String>
Key-value tags for the Core Network. 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 those inherited from the provider
default_tags
configuration block.
Supporting Types
CoreNetworkEdge
- Asn int
ASN of a core network edge.
- Edge
Location string Region where a core network edge is located.
- Inside
Cidr List<string>Blocks Inside IP addresses used for core network edges.
- Asn int
ASN of a core network edge.
- Edge
Location string Region where a core network edge is located.
- Inside
Cidr []stringBlocks Inside IP addresses used for core network edges.
- asn Integer
ASN of a core network edge.
- edge
Location String Region where a core network edge is located.
- inside
Cidr List<String>Blocks Inside IP addresses used for core network edges.
- asn number
ASN of a core network edge.
- edge
Location string Region where a core network edge is located.
- inside
Cidr string[]Blocks Inside IP addresses used for core network edges.
- asn int
ASN of a core network edge.
- edge_
location str Region where a core network edge is located.
- inside_
cidr_ Sequence[str]blocks Inside IP addresses used for core network edges.
- asn Number
ASN of a core network edge.
- edge
Location String Region where a core network edge is located.
- inside
Cidr List<String>Blocks Inside IP addresses used for core network edges.
CoreNetworkSegment
- Edge
Locations List<string> Regions where the edges are located.
- Name string
Name of a core network segment.
- List<string>
Shared segments of a core network.
- Edge
Locations []string Regions where the edges are located.
- Name string
Name of a core network segment.
- []string
Shared segments of a core network.
- edge
Locations List<String> Regions where the edges are located.
- name String
Name of a core network segment.
- List<String>
Shared segments of a core network.
- edge
Locations string[] Regions where the edges are located.
- name string
Name of a core network segment.
- string[]
Shared segments of a core network.
- edge_
locations Sequence[str] Regions where the edges are located.
- name str
Name of a core network segment.
- Sequence[str]
Shared segments of a core network.
- edge
Locations List<String> Regions where the edges are located.
- name String
Name of a core network segment.
- List<String>
Shared segments of a core network.
Import
aws_networkmanager_core_network
can be imported using the core network ID, e.g.
$ pulumi import aws:networkmanager/coreNetwork:CoreNetwork example core-network-0d47f6t230mz46dy4
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.