1. Packages
  2. AWS Classic
  3. API Docs
  4. ec2
  5. getPrefixList

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.ec2.getPrefixList

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    aws.ec2.getPrefixList provides details about a specific AWS prefix list (PL) in the current region.

    This can be used both to validate a prefix list given in a variable and to obtain the CIDR blocks (IP address ranges) for the associated AWS service. The latter may be useful e.g., for adding network ACL rules.

    The aws.ec2.ManagedPrefixList data source is normally more appropriate to use given it can return customer-managed prefix list info, as well as additional attributes.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const privateS3VpcEndpoint = new aws.ec2.VpcEndpoint("private_s3", {
        vpcId: foo.id,
        serviceName: "com.amazonaws.us-west-2.s3",
    });
    const privateS3 = aws.ec2.getPrefixListOutput({
        prefixListId: privateS3VpcEndpoint.prefixListId,
    });
    const bar = new aws.ec2.NetworkAcl("bar", {vpcId: foo.id});
    const privateS3NetworkAclRule = new aws.ec2.NetworkAclRule("private_s3", {
        networkAclId: bar.id,
        ruleNumber: 200,
        egress: false,
        protocol: "tcp",
        ruleAction: "allow",
        cidrBlock: privateS3.apply(privateS3 => privateS3.cidrBlocks?.[0]),
        fromPort: 443,
        toPort: 443,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    private_s3_vpc_endpoint = aws.ec2.VpcEndpoint("private_s3",
        vpc_id=foo["id"],
        service_name="com.amazonaws.us-west-2.s3")
    private_s3 = aws.ec2.get_prefix_list_output(prefix_list_id=private_s3_vpc_endpoint.prefix_list_id)
    bar = aws.ec2.NetworkAcl("bar", vpc_id=foo["id"])
    private_s3_network_acl_rule = aws.ec2.NetworkAclRule("private_s3",
        network_acl_id=bar.id,
        rule_number=200,
        egress=False,
        protocol="tcp",
        rule_action="allow",
        cidr_block=private_s3.cidr_blocks[0],
        from_port=443,
        to_port=443)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		privateS3VpcEndpoint, err := ec2.NewVpcEndpoint(ctx, "private_s3", &ec2.VpcEndpointArgs{
    			VpcId:       pulumi.Any(foo.Id),
    			ServiceName: pulumi.String("com.amazonaws.us-west-2.s3"),
    		})
    		if err != nil {
    			return err
    		}
    		privateS3 := ec2.GetPrefixListOutput(ctx, ec2.GetPrefixListOutputArgs{
    			PrefixListId: privateS3VpcEndpoint.PrefixListId,
    		}, nil)
    		bar, err := ec2.NewNetworkAcl(ctx, "bar", &ec2.NetworkAclArgs{
    			VpcId: pulumi.Any(foo.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewNetworkAclRule(ctx, "private_s3", &ec2.NetworkAclRuleArgs{
    			NetworkAclId: bar.ID(),
    			RuleNumber:   pulumi.Int(200),
    			Egress:       pulumi.Bool(false),
    			Protocol:     pulumi.String("tcp"),
    			RuleAction:   pulumi.String("allow"),
    			CidrBlock: privateS3.ApplyT(func(privateS3 ec2.GetPrefixListResult) (*string, error) {
    				return &privateS3.CidrBlocks[0], nil
    			}).(pulumi.StringPtrOutput),
    			FromPort: pulumi.Int(443),
    			ToPort:   pulumi.Int(443),
    		})
    		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 privateS3VpcEndpoint = new Aws.Ec2.VpcEndpoint("private_s3", new()
        {
            VpcId = foo.Id,
            ServiceName = "com.amazonaws.us-west-2.s3",
        });
    
        var privateS3 = Aws.Ec2.GetPrefixList.Invoke(new()
        {
            PrefixListId = privateS3VpcEndpoint.PrefixListId,
        });
    
        var bar = new Aws.Ec2.NetworkAcl("bar", new()
        {
            VpcId = foo.Id,
        });
    
        var privateS3NetworkAclRule = new Aws.Ec2.NetworkAclRule("private_s3", new()
        {
            NetworkAclId = bar.Id,
            RuleNumber = 200,
            Egress = false,
            Protocol = "tcp",
            RuleAction = "allow",
            CidrBlock = privateS3.Apply(getPrefixListResult => getPrefixListResult.CidrBlocks[0]),
            FromPort = 443,
            ToPort = 443,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.VpcEndpoint;
    import com.pulumi.aws.ec2.VpcEndpointArgs;
    import com.pulumi.aws.ec2.Ec2Functions;
    import com.pulumi.aws.ec2.inputs.GetPrefixListArgs;
    import com.pulumi.aws.ec2.NetworkAcl;
    import com.pulumi.aws.ec2.NetworkAclArgs;
    import com.pulumi.aws.ec2.NetworkAclRule;
    import com.pulumi.aws.ec2.NetworkAclRuleArgs;
    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 privateS3VpcEndpoint = new VpcEndpoint("privateS3VpcEndpoint", VpcEndpointArgs.builder()        
                .vpcId(foo.id())
                .serviceName("com.amazonaws.us-west-2.s3")
                .build());
    
            final var privateS3 = Ec2Functions.getPrefixList(GetPrefixListArgs.builder()
                .prefixListId(privateS3VpcEndpoint.prefixListId())
                .build());
    
            var bar = new NetworkAcl("bar", NetworkAclArgs.builder()        
                .vpcId(foo.id())
                .build());
    
            var privateS3NetworkAclRule = new NetworkAclRule("privateS3NetworkAclRule", NetworkAclRuleArgs.builder()        
                .networkAclId(bar.id())
                .ruleNumber(200)
                .egress(false)
                .protocol("tcp")
                .ruleAction("allow")
                .cidrBlock(privateS3.applyValue(getPrefixListResult -> getPrefixListResult).applyValue(privateS3 -> privateS3.applyValue(getPrefixListResult -> getPrefixListResult.cidrBlocks()[0])))
                .fromPort(443)
                .toPort(443)
                .build());
    
        }
    }
    
    resources:
      privateS3VpcEndpoint:
        type: aws:ec2:VpcEndpoint
        name: private_s3
        properties:
          vpcId: ${foo.id}
          serviceName: com.amazonaws.us-west-2.s3
      bar:
        type: aws:ec2:NetworkAcl
        properties:
          vpcId: ${foo.id}
      privateS3NetworkAclRule:
        type: aws:ec2:NetworkAclRule
        name: private_s3
        properties:
          networkAclId: ${bar.id}
          ruleNumber: 200
          egress: false
          protocol: tcp
          ruleAction: allow
          cidrBlock: ${privateS3.cidrBlocks[0]}
          fromPort: 443
          toPort: 443
    variables:
      privateS3:
        fn::invoke:
          Function: aws:ec2:getPrefixList
          Arguments:
            prefixListId: ${privateS3VpcEndpoint.prefixListId}
    

    Filter

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const test = aws.ec2.getPrefixList({
        filters: [{
            name: "prefix-list-id",
            values: ["pl-68a54001"],
        }],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.ec2.get_prefix_list(filters=[aws.ec2.GetPrefixListFilterArgs(
        name="prefix-list-id",
        values=["pl-68a54001"],
    )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ec2.GetPrefixList(ctx, &ec2.GetPrefixListArgs{
    			Filters: []ec2.GetPrefixListFilter{
    				{
    					Name: "prefix-list-id",
    					Values: []string{
    						"pl-68a54001",
    					},
    				},
    			},
    		}, nil)
    		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 test = Aws.Ec2.GetPrefixList.Invoke(new()
        {
            Filters = new[]
            {
                new Aws.Ec2.Inputs.GetPrefixListFilterInputArgs
                {
                    Name = "prefix-list-id",
                    Values = new[]
                    {
                        "pl-68a54001",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.Ec2Functions;
    import com.pulumi.aws.ec2.inputs.GetPrefixListArgs;
    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) {
            final var test = Ec2Functions.getPrefixList(GetPrefixListArgs.builder()
                .filters(GetPrefixListFilterArgs.builder()
                    .name("prefix-list-id")
                    .values("pl-68a54001")
                    .build())
                .build());
    
        }
    }
    
    variables:
      test:
        fn::invoke:
          Function: aws:ec2:getPrefixList
          Arguments:
            filters:
              - name: prefix-list-id
                values:
                  - pl-68a54001
    

    Using getPrefixList

    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 getPrefixList(args: GetPrefixListArgs, opts?: InvokeOptions): Promise<GetPrefixListResult>
    function getPrefixListOutput(args: GetPrefixListOutputArgs, opts?: InvokeOptions): Output<GetPrefixListResult>
    def get_prefix_list(filters: Optional[Sequence[GetPrefixListFilter]] = None,
                        name: Optional[str] = None,
                        prefix_list_id: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> GetPrefixListResult
    def get_prefix_list_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetPrefixListFilterArgs]]]] = None,
                        name: Optional[pulumi.Input[str]] = None,
                        prefix_list_id: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetPrefixListResult]
    func GetPrefixList(ctx *Context, args *GetPrefixListArgs, opts ...InvokeOption) (*GetPrefixListResult, error)
    func GetPrefixListOutput(ctx *Context, args *GetPrefixListOutputArgs, opts ...InvokeOption) GetPrefixListResultOutput

    > Note: This function is named GetPrefixList in the Go SDK.

    public static class GetPrefixList 
    {
        public static Task<GetPrefixListResult> InvokeAsync(GetPrefixListArgs args, InvokeOptions? opts = null)
        public static Output<GetPrefixListResult> Invoke(GetPrefixListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPrefixListResult> getPrefixList(GetPrefixListArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: aws:ec2/getPrefixList:getPrefixList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetPrefixListFilter>
    Configuration block(s) for filtering. Detailed below.
    Name string
    Name of the prefix list to select.
    PrefixListId string
    ID of the prefix list to select.
    Filters []GetPrefixListFilter
    Configuration block(s) for filtering. Detailed below.
    Name string
    Name of the prefix list to select.
    PrefixListId string
    ID of the prefix list to select.
    filters List<GetPrefixListFilter>
    Configuration block(s) for filtering. Detailed below.
    name String
    Name of the prefix list to select.
    prefixListId String
    ID of the prefix list to select.
    filters GetPrefixListFilter[]
    Configuration block(s) for filtering. Detailed below.
    name string
    Name of the prefix list to select.
    prefixListId string
    ID of the prefix list to select.
    filters Sequence[GetPrefixListFilter]
    Configuration block(s) for filtering. Detailed below.
    name str
    Name of the prefix list to select.
    prefix_list_id str
    ID of the prefix list to select.
    filters List<Property Map>
    Configuration block(s) for filtering. Detailed below.
    name String
    Name of the prefix list to select.
    prefixListId String
    ID of the prefix list to select.

    getPrefixList Result

    The following output properties are available:

    CidrBlocks List<string>
    List of CIDR blocks for the AWS service associated with the prefix list.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the selected prefix list.
    Filters List<GetPrefixListFilter>
    PrefixListId string
    CidrBlocks []string
    List of CIDR blocks for the AWS service associated with the prefix list.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the selected prefix list.
    Filters []GetPrefixListFilter
    PrefixListId string
    cidrBlocks List<String>
    List of CIDR blocks for the AWS service associated with the prefix list.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the selected prefix list.
    filters List<GetPrefixListFilter>
    prefixListId String
    cidrBlocks string[]
    List of CIDR blocks for the AWS service associated with the prefix list.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Name of the selected prefix list.
    filters GetPrefixListFilter[]
    prefixListId string
    cidr_blocks Sequence[str]
    List of CIDR blocks for the AWS service associated with the prefix list.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Name of the selected prefix list.
    filters Sequence[GetPrefixListFilter]
    prefix_list_id str
    cidrBlocks List<String>
    List of CIDR blocks for the AWS service associated with the prefix list.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the selected prefix list.
    filters List<Property Map>
    prefixListId String

    Supporting Types

    GetPrefixListFilter

    Name string
    Name of the filter field. Valid values can be found in the EC2 DescribePrefixLists API Reference.
    Values List<string>
    Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
    Name string
    Name of the filter field. Valid values can be found in the EC2 DescribePrefixLists API Reference.
    Values []string
    Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
    name String
    Name of the filter field. Valid values can be found in the EC2 DescribePrefixLists API Reference.
    values List<String>
    Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
    name string
    Name of the filter field. Valid values can be found in the EC2 DescribePrefixLists API Reference.
    values string[]
    Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
    name str
    Name of the filter field. Valid values can be found in the EC2 DescribePrefixLists API Reference.
    values Sequence[str]
    Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
    name String
    Name of the filter field. Valid values can be found in the EC2 DescribePrefixLists API Reference.
    values List<String>
    Set of values that are accepted for the given filter field. Results will be selected if any given value matches.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi