aws.networkmanager.VpcAttachment
Explore with Pulumi AI
Manages a Network Manager VPC attachment.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.VpcAttachment("example", {
subnetArns: [exampleAwsSubnet.arn],
coreNetworkId: exampleAwsccNetworkmanagerCoreNetwork.id,
vpcArn: exampleAwsVpc.arn,
});
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.VpcAttachment("example",
subnet_arns=[example_aws_subnet["arn"]],
core_network_id=example_awscc_networkmanager_core_network["id"],
vpc_arn=example_aws_vpc["arn"])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/networkmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkmanager.NewVpcAttachment(ctx, "example", &networkmanager.VpcAttachmentArgs{
SubnetArns: pulumi.StringArray{
exampleAwsSubnet.Arn,
},
CoreNetworkId: pulumi.Any(exampleAwsccNetworkmanagerCoreNetwork.Id),
VpcArn: pulumi.Any(exampleAwsVpc.Arn),
})
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.NetworkManager.VpcAttachment("example", new()
{
SubnetArns = new[]
{
exampleAwsSubnet.Arn,
},
CoreNetworkId = exampleAwsccNetworkmanagerCoreNetwork.Id,
VpcArn = exampleAwsVpc.Arn,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.VpcAttachment;
import com.pulumi.aws.networkmanager.VpcAttachmentArgs;
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 VpcAttachment("example", VpcAttachmentArgs.builder()
.subnetArns(exampleAwsSubnet.arn())
.coreNetworkId(exampleAwsccNetworkmanagerCoreNetwork.id())
.vpcArn(exampleAwsVpc.arn())
.build());
}
}
resources:
example:
type: aws:networkmanager:VpcAttachment
properties:
subnetArns:
- ${exampleAwsSubnet.arn}
coreNetworkId: ${exampleAwsccNetworkmanagerCoreNetwork.id}
vpcArn: ${exampleAwsVpc.arn}
Create VpcAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpcAttachment(name: string, args: VpcAttachmentArgs, opts?: CustomResourceOptions);
@overload
def VpcAttachment(resource_name: str,
args: VpcAttachmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VpcAttachment(resource_name: str,
opts: Optional[ResourceOptions] = None,
core_network_id: Optional[str] = None,
subnet_arns: Optional[Sequence[str]] = None,
vpc_arn: Optional[str] = None,
options: Optional[VpcAttachmentOptionsArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewVpcAttachment(ctx *Context, name string, args VpcAttachmentArgs, opts ...ResourceOption) (*VpcAttachment, error)
public VpcAttachment(string name, VpcAttachmentArgs args, CustomResourceOptions? opts = null)
public VpcAttachment(String name, VpcAttachmentArgs args)
public VpcAttachment(String name, VpcAttachmentArgs args, CustomResourceOptions options)
type: aws:networkmanager:VpcAttachment
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 VpcAttachmentArgs
- 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 VpcAttachmentArgs
- 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 VpcAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpcAttachmentArgs
- 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 awsVpcAttachmentResource = new Aws.NetworkManager.VpcAttachment("awsVpcAttachmentResource", new()
{
CoreNetworkId = "string",
SubnetArns = new[]
{
"string",
},
VpcArn = "string",
Options = new Aws.NetworkManager.Inputs.VpcAttachmentOptionsArgs
{
ApplianceModeSupport = false,
Ipv6Support = false,
},
Tags =
{
{ "string", "string" },
},
});
example, err := networkmanager.NewVpcAttachment(ctx, "awsVpcAttachmentResource", &networkmanager.VpcAttachmentArgs{
CoreNetworkId: pulumi.String("string"),
SubnetArns: pulumi.StringArray{
pulumi.String("string"),
},
VpcArn: pulumi.String("string"),
Options: &networkmanager.VpcAttachmentOptionsArgs{
ApplianceModeSupport: pulumi.Bool(false),
Ipv6Support: pulumi.Bool(false),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var awsVpcAttachmentResource = new com.pulumi.aws.networkmanager.VpcAttachment("awsVpcAttachmentResource", com.pulumi.aws.networkmanager.VpcAttachmentArgs.builder()
.coreNetworkId("string")
.subnetArns("string")
.vpcArn("string")
.options(VpcAttachmentOptionsArgs.builder()
.applianceModeSupport(false)
.ipv6Support(false)
.build())
.tags(Map.of("string", "string"))
.build());
aws_vpc_attachment_resource = aws.networkmanager.VpcAttachment("awsVpcAttachmentResource",
core_network_id="string",
subnet_arns=["string"],
vpc_arn="string",
options={
"appliance_mode_support": False,
"ipv6_support": False,
},
tags={
"string": "string",
})
const awsVpcAttachmentResource = new aws.networkmanager.VpcAttachment("awsVpcAttachmentResource", {
coreNetworkId: "string",
subnetArns: ["string"],
vpcArn: "string",
options: {
applianceModeSupport: false,
ipv6Support: false,
},
tags: {
string: "string",
},
});
type: aws:networkmanager:VpcAttachment
properties:
coreNetworkId: string
options:
applianceModeSupport: false
ipv6Support: false
subnetArns:
- string
tags:
string: string
vpcArn: string
VpcAttachment 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 VpcAttachment resource accepts the following input properties:
- Core
Network stringId - ID of a core network for the VPC attachment.
- Subnet
Arns List<string> - Subnet ARNs of the VPC attachment.
- Vpc
Arn string ARN of the VPC.
The following arguments are optional:
- Options
Vpc
Attachment Options - Options for the VPC attachment. See below.
- Dictionary<string, string>
- Key-value tags for the attachment. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Core
Network stringId - ID of a core network for the VPC attachment.
- Subnet
Arns []string - Subnet ARNs of the VPC attachment.
- Vpc
Arn string ARN of the VPC.
The following arguments are optional:
- Options
Vpc
Attachment Options Args - Options for the VPC attachment. See below.
- map[string]string
- Key-value tags for the attachment. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- core
Network StringId - ID of a core network for the VPC attachment.
- subnet
Arns List<String> - Subnet ARNs of the VPC attachment.
- vpc
Arn String ARN of the VPC.
The following arguments are optional:
- options
Vpc
Attachment Options - Options for the VPC attachment. See below.
- Map<String,String>
- Key-value tags for the attachment. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- core
Network stringId - ID of a core network for the VPC attachment.
- subnet
Arns string[] - Subnet ARNs of the VPC attachment.
- vpc
Arn string ARN of the VPC.
The following arguments are optional:
- options
Vpc
Attachment Options - Options for the VPC attachment. See below.
- {[key: string]: string}
- Key-value tags for the attachment. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- core_
network_ strid - ID of a core network for the VPC attachment.
- subnet_
arns Sequence[str] - Subnet ARNs of the VPC attachment.
- vpc_
arn str ARN of the VPC.
The following arguments are optional:
- options
Vpc
Attachment Options Args - Options for the VPC attachment. See below.
- Mapping[str, str]
- Key-value tags for the attachment. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- core
Network StringId - ID of a core network for the VPC attachment.
- subnet
Arns List<String> - Subnet ARNs of the VPC attachment.
- vpc
Arn String ARN of the VPC.
The following arguments are optional:
- options Property Map
- Options for the VPC attachment. See below.
- Map<String>
- Key-value tags for the attachment. 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 VpcAttachment resource produces the following output properties:
- Arn string
- ARN of the attachment.
- Attachment
Policy intRule Number - Policy rule number associated with the attachment.
- Attachment
Type string - Type of attachment.
- Core
Network stringArn - ARN of a core network.
- Edge
Location string - Region where the edge is located.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Account stringId - ID of the attachment account owner.
- Resource
Arn string - Attachment resource ARN.
- Segment
Name string - Name of the segment attachment.
- State string
- State of the attachment.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- ARN of the attachment.
- Attachment
Policy intRule Number - Policy rule number associated with the attachment.
- Attachment
Type string - Type of attachment.
- Core
Network stringArn - ARN of a core network.
- Edge
Location string - Region where the edge is located.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Account stringId - ID of the attachment account owner.
- Resource
Arn string - Attachment resource ARN.
- Segment
Name string - Name of the segment attachment.
- State string
- State of the attachment.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the attachment.
- attachment
Policy IntegerRule Number - Policy rule number associated with the attachment.
- attachment
Type String - Type of attachment.
- core
Network StringArn - ARN of a core network.
- edge
Location String - Region where the edge is located.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Account StringId - ID of the attachment account owner.
- resource
Arn String - Attachment resource ARN.
- segment
Name String - Name of the segment attachment.
- state String
- State of the attachment.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- ARN of the attachment.
- attachment
Policy numberRule Number - Policy rule number associated with the attachment.
- attachment
Type string - Type of attachment.
- core
Network stringArn - ARN of a core network.
- edge
Location string - Region where the edge is located.
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Account stringId - ID of the attachment account owner.
- resource
Arn string - Attachment resource ARN.
- segment
Name string - Name of the segment attachment.
- state string
- State of the attachment.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- ARN of the attachment.
- attachment_
policy_ intrule_ number - Policy rule number associated with the attachment.
- attachment_
type str - Type of attachment.
- core_
network_ strarn - ARN of a core network.
- edge_
location str - Region where the edge is located.
- id str
- The provider-assigned unique ID for this managed resource.
- owner_
account_ strid - ID of the attachment account owner.
- resource_
arn str - Attachment resource ARN.
- segment_
name str - Name of the segment attachment.
- state str
- State of the attachment.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the attachment.
- attachment
Policy NumberRule Number - Policy rule number associated with the attachment.
- attachment
Type String - Type of attachment.
- core
Network StringArn - ARN of a core network.
- edge
Location String - Region where the edge is located.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Account StringId - ID of the attachment account owner.
- resource
Arn String - Attachment resource ARN.
- segment
Name String - Name of the segment attachment.
- state String
- State of the attachment.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing VpcAttachment Resource
Get an existing VpcAttachment 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?: VpcAttachmentState, opts?: CustomResourceOptions): VpcAttachment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
attachment_policy_rule_number: Optional[int] = None,
attachment_type: Optional[str] = None,
core_network_arn: Optional[str] = None,
core_network_id: Optional[str] = None,
edge_location: Optional[str] = None,
options: Optional[VpcAttachmentOptionsArgs] = None,
owner_account_id: Optional[str] = None,
resource_arn: Optional[str] = None,
segment_name: Optional[str] = None,
state: Optional[str] = None,
subnet_arns: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
vpc_arn: Optional[str] = None) -> VpcAttachment
func GetVpcAttachment(ctx *Context, name string, id IDInput, state *VpcAttachmentState, opts ...ResourceOption) (*VpcAttachment, error)
public static VpcAttachment Get(string name, Input<string> id, VpcAttachmentState? state, CustomResourceOptions? opts = null)
public static VpcAttachment get(String name, Output<String> id, VpcAttachmentState state, CustomResourceOptions options)
resources: _: type: aws:networkmanager:VpcAttachment 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
- ARN of the attachment.
- Attachment
Policy intRule Number - Policy rule number associated with the attachment.
- Attachment
Type string - Type of attachment.
- Core
Network stringArn - ARN of a core network.
- Core
Network stringId - ID of a core network for the VPC attachment.
- Edge
Location string - Region where the edge is located.
- Options
Vpc
Attachment Options - Options for the VPC attachment. See below.
- Owner
Account stringId - ID of the attachment account owner.
- Resource
Arn string - Attachment resource ARN.
- Segment
Name string - Name of the segment attachment.
- State string
- State of the attachment.
- Subnet
Arns List<string> - Subnet ARNs of the VPC attachment.
- Dictionary<string, string>
- Key-value tags for the attachment. 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>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vpc
Arn string ARN of the VPC.
The following arguments are optional:
- Arn string
- ARN of the attachment.
- Attachment
Policy intRule Number - Policy rule number associated with the attachment.
- Attachment
Type string - Type of attachment.
- Core
Network stringArn - ARN of a core network.
- Core
Network stringId - ID of a core network for the VPC attachment.
- Edge
Location string - Region where the edge is located.
- Options
Vpc
Attachment Options Args - Options for the VPC attachment. See below.
- Owner
Account stringId - ID of the attachment account owner.
- Resource
Arn string - Attachment resource ARN.
- Segment
Name string - Name of the segment attachment.
- State string
- State of the attachment.
- Subnet
Arns []string - Subnet ARNs of the VPC attachment.
- map[string]string
- Key-value tags for the attachment. 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
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vpc
Arn string ARN of the VPC.
The following arguments are optional:
- arn String
- ARN of the attachment.
- attachment
Policy IntegerRule Number - Policy rule number associated with the attachment.
- attachment
Type String - Type of attachment.
- core
Network StringArn - ARN of a core network.
- core
Network StringId - ID of a core network for the VPC attachment.
- edge
Location String - Region where the edge is located.
- options
Vpc
Attachment Options - Options for the VPC attachment. See below.
- owner
Account StringId - ID of the attachment account owner.
- resource
Arn String - Attachment resource ARN.
- segment
Name String - Name of the segment attachment.
- state String
- State of the attachment.
- subnet
Arns List<String> - Subnet ARNs of the VPC attachment.
- Map<String,String>
- Key-value tags for the attachment. 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>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Arn String ARN of the VPC.
The following arguments are optional:
- arn string
- ARN of the attachment.
- attachment
Policy numberRule Number - Policy rule number associated with the attachment.
- attachment
Type string - Type of attachment.
- core
Network stringArn - ARN of a core network.
- core
Network stringId - ID of a core network for the VPC attachment.
- edge
Location string - Region where the edge is located.
- options
Vpc
Attachment Options - Options for the VPC attachment. See below.
- owner
Account stringId - ID of the attachment account owner.
- resource
Arn string - Attachment resource ARN.
- segment
Name string - Name of the segment attachment.
- state string
- State of the attachment.
- subnet
Arns string[] - Subnet ARNs of the VPC attachment.
- {[key: string]: string}
- Key-value tags for the attachment. 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}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Arn string ARN of the VPC.
The following arguments are optional:
- arn str
- ARN of the attachment.
- attachment_
policy_ intrule_ number - Policy rule number associated with the attachment.
- attachment_
type str - Type of attachment.
- core_
network_ strarn - ARN of a core network.
- core_
network_ strid - ID of a core network for the VPC attachment.
- edge_
location str - Region where the edge is located.
- options
Vpc
Attachment Options Args - Options for the VPC attachment. See below.
- owner_
account_ strid - ID of the attachment account owner.
- resource_
arn str - Attachment resource ARN.
- segment_
name str - Name of the segment attachment.
- state str
- State of the attachment.
- subnet_
arns Sequence[str] - Subnet ARNs of the VPC attachment.
- Mapping[str, str]
- Key-value tags for the attachment. 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]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc_
arn str ARN of the VPC.
The following arguments are optional:
- arn String
- ARN of the attachment.
- attachment
Policy NumberRule Number - Policy rule number associated with the attachment.
- attachment
Type String - Type of attachment.
- core
Network StringArn - ARN of a core network.
- core
Network StringId - ID of a core network for the VPC attachment.
- edge
Location String - Region where the edge is located.
- options Property Map
- Options for the VPC attachment. See below.
- owner
Account StringId - ID of the attachment account owner.
- resource
Arn String - Attachment resource ARN.
- segment
Name String - Name of the segment attachment.
- state String
- State of the attachment.
- subnet
Arns List<String> - Subnet ARNs of the VPC attachment.
- Map<String>
- Key-value tags for the attachment. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Arn String ARN of the VPC.
The following arguments are optional:
Supporting Types
VpcAttachmentOptions, VpcAttachmentOptionsArgs
- Appliance
Mode boolSupport - Whether to enable appliance mode support. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- Ipv6Support bool
- Whether to enable IPv6 support. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- Appliance
Mode boolSupport - Whether to enable appliance mode support. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- Ipv6Support bool
- Whether to enable IPv6 support. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- appliance
Mode BooleanSupport - Whether to enable appliance mode support. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- ipv6Support Boolean
- Whether to enable IPv6 support. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- appliance
Mode booleanSupport - Whether to enable appliance mode support. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- ipv6Support boolean
- Whether to enable IPv6 support. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- appliance_
mode_ boolsupport - Whether to enable appliance mode support. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- ipv6_
support bool - Whether to enable IPv6 support. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- appliance
Mode BooleanSupport - Whether to enable appliance mode support. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
- ipv6Support Boolean
- Whether to enable IPv6 support. If the VPC attachment is pending acceptance, changing this value will recreate the resource.
Import
Using pulumi import
, import aws_networkmanager_vpc_attachment
using the attachment ID. For example:
$ pulumi import aws:networkmanager/vpcAttachment:VpcAttachment example attachment-0f8fa60d2238d1bd8
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.