VpcEndpointRouteTableAssociation
Manages a VPC Endpoint Route Table Association
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.Ec2.VpcEndpointRouteTableAssociation("example", new Aws.Ec2.VpcEndpointRouteTableAssociationArgs
{
RouteTableId = aws_route_table.Example.Id,
VpcEndpointId = aws_vpc_endpoint.Example.Id,
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ec2.NewVpcEndpointRouteTableAssociation(ctx, "example", &ec2.VpcEndpointRouteTableAssociationArgs{
RouteTableId: pulumi.String(aws_route_table.Example.Id),
VpcEndpointId: pulumi.String(aws_vpc_endpoint.Example.Id),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
example = aws.ec2.VpcEndpointRouteTableAssociation("example",
route_table_id=aws_route_table["example"]["id"],
vpc_endpoint_id=aws_vpc_endpoint["example"]["id"])import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.ec2.VpcEndpointRouteTableAssociation("example", {
routeTableId: aws_route_table_example.id,
vpcEndpointId: aws_vpc_endpoint_example.id,
});Create a VpcEndpointRouteTableAssociation Resource
new VpcEndpointRouteTableAssociation(name: string, args: VpcEndpointRouteTableAssociationArgs, opts?: CustomResourceOptions);def VpcEndpointRouteTableAssociation(resource_name, opts=None, route_table_id=None, vpc_endpoint_id=None, __props__=None);func NewVpcEndpointRouteTableAssociation(ctx *Context, name string, args VpcEndpointRouteTableAssociationArgs, opts ...ResourceOption) (*VpcEndpointRouteTableAssociation, error)public VpcEndpointRouteTableAssociation(string name, VpcEndpointRouteTableAssociationArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args VpcEndpointRouteTableAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VpcEndpointRouteTableAssociationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcEndpointRouteTableAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
VpcEndpointRouteTableAssociation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The VpcEndpointRouteTableAssociation resource accepts the following input properties:
- Route
Table stringId Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- Vpc
Endpoint stringId Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
- Route
Table stringId Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- Vpc
Endpoint stringId Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
- route
Table stringId Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- vpc
Endpoint stringId Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
- route_
table_ strid Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- vpc_
endpoint_ strid Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
Outputs
All input properties are implicitly available as output properties. Additionally, the VpcEndpointRouteTableAssociation resource produces the following output properties:
Look up an Existing VpcEndpointRouteTableAssociation Resource
Get an existing VpcEndpointRouteTableAssociation 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?: VpcEndpointRouteTableAssociationState, opts?: CustomResourceOptions): VpcEndpointRouteTableAssociationstatic get(resource_name, id, opts=None, route_table_id=None, vpc_endpoint_id=None, __props__=None);func GetVpcEndpointRouteTableAssociation(ctx *Context, name string, id IDInput, state *VpcEndpointRouteTableAssociationState, opts ...ResourceOption) (*VpcEndpointRouteTableAssociation, error)public static VpcEndpointRouteTableAssociation Get(string name, Input<string> id, VpcEndpointRouteTableAssociationState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Route
Table stringId Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- Vpc
Endpoint stringId Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
- Route
Table stringId Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- Vpc
Endpoint stringId Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
- route
Table stringId Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- vpc
Endpoint stringId Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
- route_
table_ strid Identifier of the EC2 Route Table to be associated with the VPC Endpoint.
- vpc_
endpoint_ strid Identifier of the VPC Endpoint with which the EC2 Route Table will be associated.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.