aws.vpclattice.ResourceGateway
Explore with Pulumi AI
Resource for managing an AWS VPC Lattice Resource Gateway.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.vpclattice.ResourceGateway("example", {
name: "Example",
vpcId: exampleAwsVpc.id,
subnetIds: [exampleAwsSubnet.id],
tags: {
Environment: "Example",
},
});
import pulumi
import pulumi_aws as aws
example = aws.vpclattice.ResourceGateway("example",
name="Example",
vpc_id=example_aws_vpc["id"],
subnet_ids=[example_aws_subnet["id"]],
tags={
"Environment": "Example",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/vpclattice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpclattice.NewResourceGateway(ctx, "example", &vpclattice.ResourceGatewayArgs{
Name: pulumi.String("Example"),
VpcId: pulumi.Any(exampleAwsVpc.Id),
SubnetIds: pulumi.StringArray{
exampleAwsSubnet.Id,
},
Tags: pulumi.StringMap{
"Environment": pulumi.String("Example"),
},
})
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.VpcLattice.ResourceGateway("example", new()
{
Name = "Example",
VpcId = exampleAwsVpc.Id,
SubnetIds = new[]
{
exampleAwsSubnet.Id,
},
Tags =
{
{ "Environment", "Example" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.vpclattice.ResourceGateway;
import com.pulumi.aws.vpclattice.ResourceGatewayArgs;
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 ResourceGateway("example", ResourceGatewayArgs.builder()
.name("Example")
.vpcId(exampleAwsVpc.id())
.subnetIds(exampleAwsSubnet.id())
.tags(Map.of("Environment", "Example"))
.build());
}
}
resources:
example:
type: aws:vpclattice:ResourceGateway
properties:
name: Example
vpcId: ${exampleAwsVpc.id}
subnetIds:
- ${exampleAwsSubnet.id}
tags:
Environment: Example
Specifying IP address type
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.vpclattice.ResourceGateway("example", {
name: "Example",
vpcId: exampleAwsVpc.id,
subnetIds: [exampleAwsSubnet.id],
ipAddressType: "DUALSTACK",
tags: {
Environment: "Example",
},
});
import pulumi
import pulumi_aws as aws
example = aws.vpclattice.ResourceGateway("example",
name="Example",
vpc_id=example_aws_vpc["id"],
subnet_ids=[example_aws_subnet["id"]],
ip_address_type="DUALSTACK",
tags={
"Environment": "Example",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/vpclattice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpclattice.NewResourceGateway(ctx, "example", &vpclattice.ResourceGatewayArgs{
Name: pulumi.String("Example"),
VpcId: pulumi.Any(exampleAwsVpc.Id),
SubnetIds: pulumi.StringArray{
exampleAwsSubnet.Id,
},
IpAddressType: pulumi.String("DUALSTACK"),
Tags: pulumi.StringMap{
"Environment": pulumi.String("Example"),
},
})
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.VpcLattice.ResourceGateway("example", new()
{
Name = "Example",
VpcId = exampleAwsVpc.Id,
SubnetIds = new[]
{
exampleAwsSubnet.Id,
},
IpAddressType = "DUALSTACK",
Tags =
{
{ "Environment", "Example" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.vpclattice.ResourceGateway;
import com.pulumi.aws.vpclattice.ResourceGatewayArgs;
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 ResourceGateway("example", ResourceGatewayArgs.builder()
.name("Example")
.vpcId(exampleAwsVpc.id())
.subnetIds(exampleAwsSubnet.id())
.ipAddressType("DUALSTACK")
.tags(Map.of("Environment", "Example"))
.build());
}
}
resources:
example:
type: aws:vpclattice:ResourceGateway
properties:
name: Example
vpcId: ${exampleAwsVpc.id}
subnetIds:
- ${exampleAwsSubnet.id}
ipAddressType: DUALSTACK
tags:
Environment: Example
With security groups
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.vpclattice.ResourceGateway("example", {
name: "Example",
vpcId: exampleAwsVpc.id,
securityGroupIds: [test.id],
subnetIds: [exampleAwsSubnet.id],
});
import pulumi
import pulumi_aws as aws
example = aws.vpclattice.ResourceGateway("example",
name="Example",
vpc_id=example_aws_vpc["id"],
security_group_ids=[test["id"]],
subnet_ids=[example_aws_subnet["id"]])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/vpclattice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpclattice.NewResourceGateway(ctx, "example", &vpclattice.ResourceGatewayArgs{
Name: pulumi.String("Example"),
VpcId: pulumi.Any(exampleAwsVpc.Id),
SecurityGroupIds: pulumi.StringArray{
test.Id,
},
SubnetIds: pulumi.StringArray{
exampleAwsSubnet.Id,
},
})
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.VpcLattice.ResourceGateway("example", new()
{
Name = "Example",
VpcId = exampleAwsVpc.Id,
SecurityGroupIds = new[]
{
test.Id,
},
SubnetIds = new[]
{
exampleAwsSubnet.Id,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.vpclattice.ResourceGateway;
import com.pulumi.aws.vpclattice.ResourceGatewayArgs;
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 ResourceGateway("example", ResourceGatewayArgs.builder()
.name("Example")
.vpcId(exampleAwsVpc.id())
.securityGroupIds(test.id())
.subnetIds(exampleAwsSubnet.id())
.build());
}
}
resources:
example:
type: aws:vpclattice:ResourceGateway
properties:
name: Example
vpcId: ${exampleAwsVpc.id}
securityGroupIds:
- ${test.id}
subnetIds:
- ${exampleAwsSubnet.id}
Create ResourceGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourceGateway(name: string, args: ResourceGatewayArgs, opts?: CustomResourceOptions);
@overload
def ResourceGateway(resource_name: str,
args: ResourceGatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResourceGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
subnet_ids: Optional[Sequence[str]] = None,
vpc_id: Optional[str] = None,
ip_address_type: Optional[str] = None,
name: Optional[str] = None,
security_group_ids: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[ResourceGatewayTimeoutsArgs] = None)
func NewResourceGateway(ctx *Context, name string, args ResourceGatewayArgs, opts ...ResourceOption) (*ResourceGateway, error)
public ResourceGateway(string name, ResourceGatewayArgs args, CustomResourceOptions? opts = null)
public ResourceGateway(String name, ResourceGatewayArgs args)
public ResourceGateway(String name, ResourceGatewayArgs args, CustomResourceOptions options)
type: aws:vpclattice:ResourceGateway
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 ResourceGatewayArgs
- 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 ResourceGatewayArgs
- 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 ResourceGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourceGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourceGatewayArgs
- 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 resourceGatewayResource = new Aws.VpcLattice.ResourceGateway("resourceGatewayResource", new()
{
SubnetIds = new[]
{
"string",
},
VpcId = "string",
IpAddressType = "string",
Name = "string",
SecurityGroupIds = new[]
{
"string",
},
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.VpcLattice.Inputs.ResourceGatewayTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := vpclattice.NewResourceGateway(ctx, "resourceGatewayResource", &vpclattice.ResourceGatewayArgs{
SubnetIds: pulumi.StringArray{
pulumi.String("string"),
},
VpcId: pulumi.String("string"),
IpAddressType: pulumi.String("string"),
Name: pulumi.String("string"),
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &vpclattice.ResourceGatewayTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var resourceGatewayResource = new ResourceGateway("resourceGatewayResource", ResourceGatewayArgs.builder()
.subnetIds("string")
.vpcId("string")
.ipAddressType("string")
.name("string")
.securityGroupIds("string")
.tags(Map.of("string", "string"))
.timeouts(ResourceGatewayTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
resource_gateway_resource = aws.vpclattice.ResourceGateway("resourceGatewayResource",
subnet_ids=["string"],
vpc_id="string",
ip_address_type="string",
name="string",
security_group_ids=["string"],
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const resourceGatewayResource = new aws.vpclattice.ResourceGateway("resourceGatewayResource", {
subnetIds: ["string"],
vpcId: "string",
ipAddressType: "string",
name: "string",
securityGroupIds: ["string"],
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:vpclattice:ResourceGateway
properties:
ipAddressType: string
name: string
securityGroupIds:
- string
subnetIds:
- string
tags:
string: string
timeouts:
create: string
delete: string
update: string
vpcId: string
ResourceGateway 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 ResourceGateway resource accepts the following input properties:
- Subnet
Ids List<string> - IDs of the VPC subnets in which to create the resource gateway.
- Vpc
Id string ID of the VPC for the resource gateway.
The following arguments are optional:
- Ip
Address stringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - Name string
- Name of the resource gateway.
- Security
Group List<string>Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- Dictionary<string, string>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Resource
Gateway Timeouts
- Subnet
Ids []string - IDs of the VPC subnets in which to create the resource gateway.
- Vpc
Id string ID of the VPC for the resource gateway.
The following arguments are optional:
- Ip
Address stringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - Name string
- Name of the resource gateway.
- Security
Group []stringIds - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- map[string]string
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Resource
Gateway Timeouts Args
- subnet
Ids List<String> - IDs of the VPC subnets in which to create the resource gateway.
- vpc
Id String ID of the VPC for the resource gateway.
The following arguments are optional:
- ip
Address StringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name String
- Name of the resource gateway.
- security
Group List<String>Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- Map<String,String>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Resource
Gateway Timeouts
- subnet
Ids string[] - IDs of the VPC subnets in which to create the resource gateway.
- vpc
Id string ID of the VPC for the resource gateway.
The following arguments are optional:
- ip
Address stringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name string
- Name of the resource gateway.
- security
Group string[]Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- {[key: string]: string}
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Resource
Gateway Timeouts
- subnet_
ids Sequence[str] - IDs of the VPC subnets in which to create the resource gateway.
- vpc_
id str ID of the VPC for the resource gateway.
The following arguments are optional:
- ip_
address_ strtype - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name str
- Name of the resource gateway.
- security_
group_ Sequence[str]ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- Mapping[str, str]
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Resource
Gateway Timeouts Args
- subnet
Ids List<String> - IDs of the VPC subnets in which to create the resource gateway.
- vpc
Id String ID of the VPC for the resource gateway.
The following arguments are optional:
- ip
Address StringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name String
- Name of the resource gateway.
- security
Group List<String>Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- Map<String>
- Key-value mapping of resource tags. 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 ResourceGateway resource produces the following output properties:
Look up Existing ResourceGateway Resource
Get an existing ResourceGateway 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?: ResourceGatewayState, opts?: CustomResourceOptions): ResourceGateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
ip_address_type: Optional[str] = None,
name: Optional[str] = None,
security_group_ids: Optional[Sequence[str]] = None,
status: Optional[str] = None,
subnet_ids: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[ResourceGatewayTimeoutsArgs] = None,
vpc_id: Optional[str] = None) -> ResourceGateway
func GetResourceGateway(ctx *Context, name string, id IDInput, state *ResourceGatewayState, opts ...ResourceOption) (*ResourceGateway, error)
public static ResourceGateway Get(string name, Input<string> id, ResourceGatewayState? state, CustomResourceOptions? opts = null)
public static ResourceGateway get(String name, Output<String> id, ResourceGatewayState state, CustomResourceOptions options)
resources: _: type: aws:vpclattice:ResourceGateway 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 resource gateway.
- Ip
Address stringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - Name string
- Name of the resource gateway.
- Security
Group List<string>Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- Status string
- Status of the resource gateway.
- Subnet
Ids List<string> - IDs of the VPC subnets in which to create the resource gateway.
- Dictionary<string, string>
- Key-value mapping of resource tags. 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. - Timeouts
Resource
Gateway Timeouts - Vpc
Id string ID of the VPC for the resource gateway.
The following arguments are optional:
- Arn string
- ARN of the resource gateway.
- Ip
Address stringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - Name string
- Name of the resource gateway.
- Security
Group []stringIds - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- Status string
- Status of the resource gateway.
- Subnet
Ids []string - IDs of the VPC subnets in which to create the resource gateway.
- map[string]string
- Key-value mapping of resource tags. 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. - Timeouts
Resource
Gateway Timeouts Args - Vpc
Id string ID of the VPC for the resource gateway.
The following arguments are optional:
- arn String
- ARN of the resource gateway.
- ip
Address StringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name String
- Name of the resource gateway.
- security
Group List<String>Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- status String
- Status of the resource gateway.
- subnet
Ids List<String> - IDs of the VPC subnets in which to create the resource gateway.
- Map<String,String>
- Key-value mapping of resource tags. 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. - timeouts
Resource
Gateway Timeouts - vpc
Id String ID of the VPC for the resource gateway.
The following arguments are optional:
- arn string
- ARN of the resource gateway.
- ip
Address stringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name string
- Name of the resource gateway.
- security
Group string[]Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- status string
- Status of the resource gateway.
- subnet
Ids string[] - IDs of the VPC subnets in which to create the resource gateway.
- {[key: string]: string}
- Key-value mapping of resource tags. 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. - timeouts
Resource
Gateway Timeouts - vpc
Id string ID of the VPC for the resource gateway.
The following arguments are optional:
- arn str
- ARN of the resource gateway.
- ip_
address_ strtype - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name str
- Name of the resource gateway.
- security_
group_ Sequence[str]ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- status str
- Status of the resource gateway.
- subnet_
ids Sequence[str] - IDs of the VPC subnets in which to create the resource gateway.
- Mapping[str, str]
- Key-value mapping of resource tags. 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. - timeouts
Resource
Gateway Timeouts Args - vpc_
id str ID of the VPC for the resource gateway.
The following arguments are optional:
- arn String
- ARN of the resource gateway.
- ip
Address StringType - IP address type used by the resource gateway. Valid values are
IPV4
,IPV6
, andDUALSTACK
. The IP address type of a resource gateway must be compatible with the subnets of the resource gateway and the IP address type of the resource. - name String
- Name of the resource gateway.
- security
Group List<String>Ids - Security group IDs associated with the resource gateway. The security groups must be in the same VPC.
- status String
- Status of the resource gateway.
- subnet
Ids List<String> - IDs of the VPC subnets in which to create the resource gateway.
- Map<String>
- Key-value mapping of resource tags. 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. - timeouts Property Map
- vpc
Id String ID of the VPC for the resource gateway.
The following arguments are optional:
Supporting Types
ResourceGatewayTimeouts, ResourceGatewayTimeoutsArgs
- 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 VPC Lattice Resource Gateway using the id
. For example:
$ pulumi import aws:vpclattice/resourceGateway:ResourceGateway example rgw-0a1b2c3d4e5f
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.