Try AWS Native preview for resources not in the classic version.
aws.ec2.getNetworkAcls
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Example Usage
The following shows outputting all network ACL ids in a vpc.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var exampleNetworkAcls = Aws.Ec2.GetNetworkAcls.Invoke(new()
{
VpcId = @var.Vpc_id,
});
return new Dictionary<string, object?>
{
["example"] = exampleNetworkAcls.Apply(getNetworkAclsResult => getNetworkAclsResult.Ids),
};
});
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 {
exampleNetworkAcls, err := ec2.GetNetworkAcls(ctx, &ec2.GetNetworkAclsArgs{
VpcId: pulumi.StringRef(_var.Vpc_id),
}, nil)
if err != nil {
return err
}
ctx.Export("example", exampleNetworkAcls.Ids)
return nil
})
}
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.GetNetworkAclsArgs;
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 exampleNetworkAcls = Ec2Functions.getNetworkAcls(GetNetworkAclsArgs.builder()
.vpcId(var_.vpc_id())
.build());
ctx.export("example", exampleNetworkAcls.applyValue(getNetworkAclsResult -> getNetworkAclsResult.ids()));
}
}
import pulumi
import pulumi_aws as aws
example_network_acls = aws.ec2.get_network_acls(vpc_id=var["vpc_id"])
pulumi.export("example", example_network_acls.ids)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const exampleNetworkAcls = aws.ec2.getNetworkAcls({
vpcId: _var.vpc_id,
});
export const example = exampleNetworkAcls.then(exampleNetworkAcls => exampleNetworkAcls.ids);
variables:
exampleNetworkAcls:
fn::invoke:
Function: aws:ec2:getNetworkAcls
Arguments:
vpcId: ${var.vpc_id}
outputs:
example: ${exampleNetworkAcls.ids}
set to a value of "Private".
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Ec2.GetNetworkAcls.Invoke(new()
{
VpcId = @var.Vpc_id,
Tags =
{
{ "Tier", "Private" },
},
});
});
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.GetNetworkAcls(ctx, &ec2.GetNetworkAclsArgs{
VpcId: pulumi.StringRef(_var.Vpc_id),
Tags: map[string]interface{}{
"Tier": "Private",
},
}, nil)
if err != nil {
return err
}
return nil
})
}
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.GetNetworkAclsArgs;
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 example = Ec2Functions.getNetworkAcls(GetNetworkAclsArgs.builder()
.vpcId(var_.vpc_id())
.tags(Map.of("Tier", "Private"))
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.ec2.get_network_acls(vpc_id=var["vpc_id"],
tags={
"Tier": "Private",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.ec2.getNetworkAcls({
vpcId: _var.vpc_id,
tags: {
Tier: "Private",
},
});
variables:
example:
fn::invoke:
Function: aws:ec2:getNetworkAcls
Arguments:
vpcId: ${var.vpc_id}
tags:
Tier: Private
with specific subnet.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Ec2.GetNetworkAcls.Invoke(new()
{
VpcId = @var.Vpc_id,
Filters = new[]
{
new Aws.Ec2.Inputs.GetNetworkAclsFilterInputArgs
{
Name = "association.subnet-id",
Values = new[]
{
aws_subnet.Test.Id,
},
},
},
});
});
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.GetNetworkAcls(ctx, &ec2.GetNetworkAclsArgs{
VpcId: pulumi.StringRef(_var.Vpc_id),
Filters: []ec2.GetNetworkAclsFilter{
{
Name: "association.subnet-id",
Values: interface{}{
aws_subnet.Test.Id,
},
},
},
}, nil);
if err != nil {
return err
}
return nil
})
}
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.GetNetworkAclsArgs;
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 example = Ec2Functions.getNetworkAcls(GetNetworkAclsArgs.builder()
.vpcId(var_.vpc_id())
.filters(GetNetworkAclsFilterArgs.builder()
.name("association.subnet-id")
.values(aws_subnet.test().id())
.build())
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.ec2.get_network_acls(vpc_id=var["vpc_id"],
filters=[aws.ec2.GetNetworkAclsFilterArgs(
name="association.subnet-id",
values=[aws_subnet["test"]["id"]],
)])
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.ec2.getNetworkAcls({
vpcId: _var.vpc_id,
filters: [{
name: "association.subnet-id",
values: [aws_subnet.test.id],
}],
});
variables:
example:
fn::invoke:
Function: aws:ec2:getNetworkAcls
Arguments:
vpcId: ${var.vpc_id}
filters:
- name: association.subnet-id
values:
- ${aws_subnet.test.id}
Using getNetworkAcls
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 getNetworkAcls(args: GetNetworkAclsArgs, opts?: InvokeOptions): Promise<GetNetworkAclsResult>
function getNetworkAclsOutput(args: GetNetworkAclsOutputArgs, opts?: InvokeOptions): Output<GetNetworkAclsResult>
def get_network_acls(filters: Optional[Sequence[GetNetworkAclsFilter]] = None,
tags: Optional[Mapping[str, str]] = None,
vpc_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNetworkAclsResult
def get_network_acls_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetworkAclsFilterArgs]]]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
vpc_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNetworkAclsResult]
func GetNetworkAcls(ctx *Context, args *GetNetworkAclsArgs, opts ...InvokeOption) (*GetNetworkAclsResult, error)
func GetNetworkAclsOutput(ctx *Context, args *GetNetworkAclsOutputArgs, opts ...InvokeOption) GetNetworkAclsResultOutput
> Note: This function is named GetNetworkAcls
in the Go SDK.
public static class GetNetworkAcls
{
public static Task<GetNetworkAclsResult> InvokeAsync(GetNetworkAclsArgs args, InvokeOptions? opts = null)
public static Output<GetNetworkAclsResult> Invoke(GetNetworkAclsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNetworkAclsResult> getNetworkAcls(GetNetworkAclsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:ec2/getNetworkAcls:getNetworkAcls
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Network Acls Filter> Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- Dictionary<string, string>
Map of tags, each pair of which must exactly match a pair on the desired network ACLs.
- Vpc
Id string VPC ID that you want to filter from.
- Filters
[]Get
Network Acls Filter Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- map[string]string
Map of tags, each pair of which must exactly match a pair on the desired network ACLs.
- Vpc
Id string VPC ID that you want to filter from.
- filters
List<Get
Network Acls Filter> Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- Map<String,String>
Map of tags, each pair of which must exactly match a pair on the desired network ACLs.
- vpc
Id String VPC ID that you want to filter from.
- filters
Get
Network Acls Filter[] Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- {[key: string]: string}
Map of tags, each pair of which must exactly match a pair on the desired network ACLs.
- vpc
Id string VPC ID that you want to filter from.
- filters
Sequence[Get
Network Acls Filter] Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- Mapping[str, str]
Map of tags, each pair of which must exactly match a pair on the desired network ACLs.
- vpc_
id str VPC ID that you want to filter from.
- filters List<Property Map>
Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- Map<String>
Map of tags, each pair of which must exactly match a pair on the desired network ACLs.
- vpc
Id String VPC ID that you want to filter from.
getNetworkAcls Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
List of all the network ACL ids found.
- Dictionary<string, string>
- Filters
List<Get
Network Acls Filter> - Vpc
Id string
- Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
List of all the network ACL ids found.
- map[string]string
- Filters
[]Get
Network Acls Filter - Vpc
Id string
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
List of all the network ACL ids found.
- Map<String,String>
- filters
List<Get
Network Acls Filter> - vpc
Id String
- id string
The provider-assigned unique ID for this managed resource.
- ids string[]
List of all the network ACL ids found.
- {[key: string]: string}
- filters
Get
Network Acls Filter[] - vpc
Id string
- id str
The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
List of all the network ACL ids found.
- Mapping[str, str]
- filters
Sequence[Get
Network Acls Filter] - vpc_
id str
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
List of all the network ACL ids found.
- Map<String>
- filters List<Property Map>
- vpc
Id String
Supporting Types
GetNetworkAclsFilter
- Name string
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 VPC will be selected if any one of the given values matches.
- Name string
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 VPC will be selected if any one of the given values matches.
- name String
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 VPC will be selected if any one of the given values matches.
- name string
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 VPC will be selected if any one of the given values matches.
- name str
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 VPC will be selected if any one of the given values matches.
- name String
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 VPC will be selected if any one of the given values matches.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.