AWS Classic
getLocalGatewayRouteTable
Provides details about an EC2 Local Gateway Route Table.
This data source can prove useful when a module accepts a local gateway route table id as an input variable and needs to, for example, find the associated Outpost or Local Gateway.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var config = new Config();
var awsEc2LocalGatewayRouteTable = config.RequireObject<dynamic>("awsEc2LocalGatewayRouteTable");
var selected = Output.Create(Aws.Ec2.GetLocalGatewayRouteTable.InvokeAsync(new Aws.Ec2.GetLocalGatewayRouteTableArgs
{
LocalGatewayRouteTableId = awsEc2LocalGatewayRouteTable,
}));
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
awsEc2LocalGatewayRouteTable := cfg.RequireObject("awsEc2LocalGatewayRouteTable")
_, err := ec2.GetLocalGatewayRouteTable(ctx, &ec2.GetLocalGatewayRouteTableArgs{
LocalGatewayRouteTableId: pulumi.StringRef(awsEc2LocalGatewayRouteTable),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var awsEc2LocalGatewayRouteTable = config.get("awsEc2LocalGatewayRouteTable");
final var selected = Output.of(Ec2Functions.getLocalGatewayRouteTable(GetLocalGatewayRouteTableArgs.builder()
.localGatewayRouteTableId(awsEc2LocalGatewayRouteTable)
.build()));
}
}
import pulumi
import pulumi_aws as aws
config = pulumi.Config()
aws_ec2_local_gateway_route_table = config.require_object("awsEc2LocalGatewayRouteTable")
selected = aws.ec2.get_local_gateway_route_table(local_gateway_route_table_id=aws_ec2_local_gateway_route_table)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const config = new pulumi.Config();
const awsEc2LocalGatewayRouteTable = config.requireObject("awsEc2LocalGatewayRouteTable");
const selected = aws.ec2.getLocalGatewayRouteTable({
localGatewayRouteTableId: awsEc2LocalGatewayRouteTable,
});
configuration:
awsEc2LocalGatewayRouteTable:
type: dynamic
variables:
selected:
Fn::Invoke:
Function: aws:ec2:getLocalGatewayRouteTable
Arguments:
localGatewayRouteTableId: ${awsEc2LocalGatewayRouteTable}
Using getLocalGatewayRouteTable
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLocalGatewayRouteTable(args: GetLocalGatewayRouteTableArgs, opts?: InvokeOptions): Promise<GetLocalGatewayRouteTableResult>
function getLocalGatewayRouteTableOutput(args: GetLocalGatewayRouteTableOutputArgs, opts?: InvokeOptions): Output<GetLocalGatewayRouteTableResult>
def get_local_gateway_route_table(filters: Optional[Sequence[GetLocalGatewayRouteTableFilter]] = None,
local_gateway_id: Optional[str] = None,
local_gateway_route_table_id: Optional[str] = None,
outpost_arn: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetLocalGatewayRouteTableResult
def get_local_gateway_route_table_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetLocalGatewayRouteTableFilterArgs]]]] = None,
local_gateway_id: Optional[pulumi.Input[str]] = None,
local_gateway_route_table_id: Optional[pulumi.Input[str]] = None,
outpost_arn: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLocalGatewayRouteTableResult]
func GetLocalGatewayRouteTable(ctx *Context, args *GetLocalGatewayRouteTableArgs, opts ...InvokeOption) (*GetLocalGatewayRouteTableResult, error)
func GetLocalGatewayRouteTableOutput(ctx *Context, args *GetLocalGatewayRouteTableOutputArgs, opts ...InvokeOption) GetLocalGatewayRouteTableResultOutput
> Note: This function is named GetLocalGatewayRouteTable
in the Go SDK.
public static class GetLocalGatewayRouteTable
{
public static Task<GetLocalGatewayRouteTableResult> InvokeAsync(GetLocalGatewayRouteTableArgs args, InvokeOptions? opts = null)
public static Output<GetLocalGatewayRouteTableResult> Invoke(GetLocalGatewayRouteTableInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetLocalGatewayRouteTableResult> getLocalGatewayRouteTable(GetLocalGatewayRouteTableArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: aws:ec2/getLocalGatewayRouteTable:getLocalGatewayRouteTable
Arguments:
# Arguments dictionary
The following arguments are supported:
- Filters
List<Pulumi.
Aws. Ec2. Inputs. Get Local Gateway Route Table Filter> - Local
Gateway stringId The id of the specific local gateway route table to retrieve.
- Local
Gateway stringRoute Table Id Local Gateway Route Table Id assigned to desired local gateway route table
- Outpost
Arn string The arn of the Outpost the local gateway route table is associated with.
- State string
The state of the local gateway route table.
- Dictionary<string, string>
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- Filters
[]Get
Local Gateway Route Table Filter - Local
Gateway stringId The id of the specific local gateway route table to retrieve.
- Local
Gateway stringRoute Table Id Local Gateway Route Table Id assigned to desired local gateway route table
- Outpost
Arn string The arn of the Outpost the local gateway route table is associated with.
- State string
The state of the local gateway route table.
- map[string]string
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters
List<Get
Local Gateway Route Table Filter> - local
Gateway StringId The id of the specific local gateway route table to retrieve.
- local
Gateway StringRoute Table Id Local Gateway Route Table Id assigned to desired local gateway route table
- outpost
Arn String The arn of the Outpost the local gateway route table is associated with.
- state String
The state of the local gateway route table.
- Map<String,String>
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters
Get
Local Gateway Route Table Filter[] - local
Gateway stringId The id of the specific local gateway route table to retrieve.
- local
Gateway stringRoute Table Id Local Gateway Route Table Id assigned to desired local gateway route table
- outpost
Arn string The arn of the Outpost the local gateway route table is associated with.
- state string
The state of the local gateway route table.
- {[key: string]: string}
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters
Sequence[Get
Local Gateway Route Table Filter] - local_
gateway_ strid The id of the specific local gateway route table to retrieve.
- local_
gateway_ strroute_ table_ id Local Gateway Route Table Id assigned to desired local gateway route table
- outpost_
arn str The arn of the Outpost the local gateway route table is associated with.
- state str
The state of the local gateway route table.
- Mapping[str, str]
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters List<Property Map>
- local
Gateway StringId The id of the specific local gateway route table to retrieve.
- local
Gateway StringRoute Table Id Local Gateway Route Table Id assigned to desired local gateway route table
- outpost
Arn String The arn of the Outpost the local gateway route table is associated with.
- state String
The state of the local gateway route table.
- Map<String>
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
getLocalGatewayRouteTable Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Local
Gateway stringId - Local
Gateway stringRoute Table Id - Outpost
Arn string - State string
- Dictionary<string, string>
- Filters
List<Pulumi.
Aws. Ec2. Outputs. Get Local Gateway Route Table Filter>
- Id string
The provider-assigned unique ID for this managed resource.
- Local
Gateway stringId - Local
Gateway stringRoute Table Id - Outpost
Arn string - State string
- map[string]string
- Filters
[]Get
Local Gateway Route Table Filter
- id String
The provider-assigned unique ID for this managed resource.
- local
Gateway StringId - local
Gateway StringRoute Table Id - outpost
Arn String - state String
- Map<String,String>
- filters
List<Get
Local Gateway Route Table Filter>
- id string
The provider-assigned unique ID for this managed resource.
- local
Gateway stringId - local
Gateway stringRoute Table Id - outpost
Arn string - state string
- {[key: string]: string}
- filters
Get
Local Gateway Route Table Filter[]
- id str
The provider-assigned unique ID for this managed resource.
- local_
gateway_ strid - local_
gateway_ strroute_ table_ id - outpost_
arn str - state str
- Mapping[str, str]
- filters
Sequence[Get
Local Gateway Route Table Filter]
- id String
The provider-assigned unique ID for this managed resource.
- local
Gateway StringId - local
Gateway StringRoute Table Id - outpost
Arn String - state String
- Map<String>
- filters List<Property Map>
Supporting Types
GetLocalGatewayRouteTableFilter
- Name string
The name of the field to filter by, as defined by the underlying AWS API.
- Values List<string>
Set of values that are accepted for the given field. A local gateway route table will be selected if any one of the given values matches.
- Name string
The name of the field to filter by, as defined by the underlying AWS API.
- Values []string
Set of values that are accepted for the given field. A local gateway route table will be selected if any one of the given values matches.
- name String
The name of the field to filter by, as defined by the underlying AWS API.
- values List<String>
Set of values that are accepted for the given field. A local gateway route table will be selected if any one of the given values matches.
- name string
The name of the field to filter by, as defined by the underlying AWS API.
- values string[]
Set of values that are accepted for the given field. A local gateway route table will be selected if any one of the given values matches.
- name str
The name of the field to filter by, as defined by the underlying AWS API.
- values Sequence[str]
Set of values that are accepted for the given field. A local gateway route table will be selected if any one of the given values matches.
- name String
The name of the field to filter by, as defined by the underlying AWS API.
- values List<String>
Set of values that are accepted for the given field. A local gateway route table will be selected if any one of the given values matches.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.