1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. NetworkAcl
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.NetworkAcl

Explore with Pulumi AI

Manages a network ACL resource within FlexibleEngine.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";

const subnet = flexibleengine.getVpcSubnetV1({
    name: "subnet-default",
});
const rule1 = new flexibleengine.NetworkAclRule("rule1", {
    description: "drop TELNET traffic",
    action: "deny",
    protocol: "tcp",
    destinationPort: "23",
    enabled: true,
});
const rule2 = new flexibleengine.NetworkAclRule("rule2", {
    description: "drop NTP traffic",
    action: "deny",
    protocol: "udp",
    destinationPort: "123",
    enabled: false,
});
const fwAcl = new flexibleengine.NetworkAcl("fwAcl", {
    subnets: [subnet.then(subnet => subnet.id)],
    inboundRules: [
        rule1.networkAclRuleId,
        rule2.networkAclRuleId,
    ],
});
Copy
import pulumi
import pulumi_flexibleengine as flexibleengine

subnet = flexibleengine.get_vpc_subnet_v1(name="subnet-default")
rule1 = flexibleengine.NetworkAclRule("rule1",
    description="drop TELNET traffic",
    action="deny",
    protocol="tcp",
    destination_port="23",
    enabled=True)
rule2 = flexibleengine.NetworkAclRule("rule2",
    description="drop NTP traffic",
    action="deny",
    protocol="udp",
    destination_port="123",
    enabled=False)
fw_acl = flexibleengine.NetworkAcl("fwAcl",
    subnets=[subnet.id],
    inbound_rules=[
        rule1.network_acl_rule_id,
        rule2.network_acl_rule_id,
    ])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		subnet, err := flexibleengine.LookupVpcSubnetV1(ctx, &flexibleengine.LookupVpcSubnetV1Args{
			Name: pulumi.StringRef("subnet-default"),
		}, nil)
		if err != nil {
			return err
		}
		rule1, err := flexibleengine.NewNetworkAclRule(ctx, "rule1", &flexibleengine.NetworkAclRuleArgs{
			Description:     pulumi.String("drop TELNET traffic"),
			Action:          pulumi.String("deny"),
			Protocol:        pulumi.String("tcp"),
			DestinationPort: pulumi.String("23"),
			Enabled:         pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		rule2, err := flexibleengine.NewNetworkAclRule(ctx, "rule2", &flexibleengine.NetworkAclRuleArgs{
			Description:     pulumi.String("drop NTP traffic"),
			Action:          pulumi.String("deny"),
			Protocol:        pulumi.String("udp"),
			DestinationPort: pulumi.String("123"),
			Enabled:         pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		_, err = flexibleengine.NewNetworkAcl(ctx, "fwAcl", &flexibleengine.NetworkAclArgs{
			Subnets: pulumi.StringArray{
				pulumi.String(subnet.Id),
			},
			InboundRules: pulumi.StringArray{
				rule1.NetworkAclRuleId,
				rule2.NetworkAclRuleId,
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;

return await Deployment.RunAsync(() => 
{
    var subnet = Flexibleengine.GetVpcSubnetV1.Invoke(new()
    {
        Name = "subnet-default",
    });

    var rule1 = new Flexibleengine.NetworkAclRule("rule1", new()
    {
        Description = "drop TELNET traffic",
        Action = "deny",
        Protocol = "tcp",
        DestinationPort = "23",
        Enabled = true,
    });

    var rule2 = new Flexibleengine.NetworkAclRule("rule2", new()
    {
        Description = "drop NTP traffic",
        Action = "deny",
        Protocol = "udp",
        DestinationPort = "123",
        Enabled = false,
    });

    var fwAcl = new Flexibleengine.NetworkAcl("fwAcl", new()
    {
        Subnets = new[]
        {
            subnet.Apply(getVpcSubnetV1Result => getVpcSubnetV1Result.Id),
        },
        InboundRules = new[]
        {
            rule1.NetworkAclRuleId,
            rule2.NetworkAclRuleId,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.FlexibleengineFunctions;
import com.pulumi.flexibleengine.inputs.GetVpcSubnetV1Args;
import com.pulumi.flexibleengine.NetworkAclRule;
import com.pulumi.flexibleengine.NetworkAclRuleArgs;
import com.pulumi.flexibleengine.NetworkAcl;
import com.pulumi.flexibleengine.NetworkAclArgs;
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 subnet = FlexibleengineFunctions.getVpcSubnetV1(GetVpcSubnetV1Args.builder()
            .name("subnet-default")
            .build());

        var rule1 = new NetworkAclRule("rule1", NetworkAclRuleArgs.builder()
            .description("drop TELNET traffic")
            .action("deny")
            .protocol("tcp")
            .destinationPort("23")
            .enabled("true")
            .build());

        var rule2 = new NetworkAclRule("rule2", NetworkAclRuleArgs.builder()
            .description("drop NTP traffic")
            .action("deny")
            .protocol("udp")
            .destinationPort("123")
            .enabled("false")
            .build());

        var fwAcl = new NetworkAcl("fwAcl", NetworkAclArgs.builder()
            .subnets(subnet.applyValue(getVpcSubnetV1Result -> getVpcSubnetV1Result.id()))
            .inboundRules(            
                rule1.networkAclRuleId(),
                rule2.networkAclRuleId())
            .build());

    }
}
Copy
resources:
  rule1:
    type: flexibleengine:NetworkAclRule
    properties:
      description: drop TELNET traffic
      action: deny
      protocol: tcp
      destinationPort: '23'
      enabled: 'true'
  rule2:
    type: flexibleengine:NetworkAclRule
    properties:
      description: drop NTP traffic
      action: deny
      protocol: udp
      destinationPort: '123'
      enabled: 'false'
  fwAcl:
    type: flexibleengine:NetworkAcl
    properties:
      subnets:
        - ${subnet.id}
      inboundRules:
        - ${rule1.networkAclRuleId}
        - ${rule2.networkAclRuleId}
variables:
  subnet:
    fn::invoke:
      function: flexibleengine:getVpcSubnetV1
      arguments:
        name: subnet-default
Copy

Create NetworkAcl Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new NetworkAcl(name: string, args?: NetworkAclArgs, opts?: CustomResourceOptions);
@overload
def NetworkAcl(resource_name: str,
               args: Optional[NetworkAclArgs] = None,
               opts: Optional[ResourceOptions] = None)

@overload
def NetworkAcl(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               description: Optional[str] = None,
               inbound_rules: Optional[Sequence[str]] = None,
               name: Optional[str] = None,
               network_acl_id: Optional[str] = None,
               outbound_rules: Optional[Sequence[str]] = None,
               subnets: Optional[Sequence[str]] = None,
               timeouts: Optional[NetworkAclTimeoutsArgs] = None)
func NewNetworkAcl(ctx *Context, name string, args *NetworkAclArgs, opts ...ResourceOption) (*NetworkAcl, error)
public NetworkAcl(string name, NetworkAclArgs? args = null, CustomResourceOptions? opts = null)
public NetworkAcl(String name, NetworkAclArgs args)
public NetworkAcl(String name, NetworkAclArgs args, CustomResourceOptions options)
type: flexibleengine:NetworkAcl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args NetworkAclArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args NetworkAclArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args NetworkAclArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args NetworkAclArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkAclArgs
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 networkAclResource = new Flexibleengine.NetworkAcl("networkAclResource", new()
{
    Description = "string",
    InboundRules = new[]
    {
        "string",
    },
    Name = "string",
    NetworkAclId = "string",
    OutboundRules = new[]
    {
        "string",
    },
    Subnets = new[]
    {
        "string",
    },
    Timeouts = new Flexibleengine.Inputs.NetworkAclTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Update = "string",
    },
});
Copy
example, err := flexibleengine.NewNetworkAcl(ctx, "networkAclResource", &flexibleengine.NetworkAclArgs{
	Description: pulumi.String("string"),
	InboundRules: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name:         pulumi.String("string"),
	NetworkAclId: pulumi.String("string"),
	OutboundRules: pulumi.StringArray{
		pulumi.String("string"),
	},
	Subnets: pulumi.StringArray{
		pulumi.String("string"),
	},
	Timeouts: &flexibleengine.NetworkAclTimeoutsArgs{
		Create: pulumi.String("string"),
		Delete: pulumi.String("string"),
		Update: pulumi.String("string"),
	},
})
Copy
var networkAclResource = new NetworkAcl("networkAclResource", NetworkAclArgs.builder()
    .description("string")
    .inboundRules("string")
    .name("string")
    .networkAclId("string")
    .outboundRules("string")
    .subnets("string")
    .timeouts(NetworkAclTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .update("string")
        .build())
    .build());
Copy
network_acl_resource = flexibleengine.NetworkAcl("networkAclResource",
    description="string",
    inbound_rules=["string"],
    name="string",
    network_acl_id="string",
    outbound_rules=["string"],
    subnets=["string"],
    timeouts={
        "create": "string",
        "delete": "string",
        "update": "string",
    })
Copy
const networkAclResource = new flexibleengine.NetworkAcl("networkAclResource", {
    description: "string",
    inboundRules: ["string"],
    name: "string",
    networkAclId: "string",
    outboundRules: ["string"],
    subnets: ["string"],
    timeouts: {
        create: "string",
        "delete": "string",
        update: "string",
    },
});
Copy
type: flexibleengine:NetworkAcl
properties:
    description: string
    inboundRules:
        - string
    name: string
    networkAclId: string
    outboundRules:
        - string
    subnets:
        - string
    timeouts:
        create: string
        delete: string
        update: string
Copy

NetworkAcl 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 NetworkAcl resource accepts the following input properties:

Description string
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
InboundRules List<string>
A list of the IDs of ingress rules associated with the network ACL.
Name string
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
NetworkAclId string
The ID of the network ACL.
OutboundRules List<string>
A list of the IDs of egress rules associated with the network ACL.
Subnets List<string>
A list of the IDs of networks associated with the network ACL.
Timeouts NetworkAclTimeouts
Description string
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
InboundRules []string
A list of the IDs of ingress rules associated with the network ACL.
Name string
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
NetworkAclId string
The ID of the network ACL.
OutboundRules []string
A list of the IDs of egress rules associated with the network ACL.
Subnets []string
A list of the IDs of networks associated with the network ACL.
Timeouts NetworkAclTimeoutsArgs
description String
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inboundRules List<String>
A list of the IDs of ingress rules associated with the network ACL.
name String
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
networkAclId String
The ID of the network ACL.
outboundRules List<String>
A list of the IDs of egress rules associated with the network ACL.
subnets List<String>
A list of the IDs of networks associated with the network ACL.
timeouts NetworkAclTimeouts
description string
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inboundRules string[]
A list of the IDs of ingress rules associated with the network ACL.
name string
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
networkAclId string
The ID of the network ACL.
outboundRules string[]
A list of the IDs of egress rules associated with the network ACL.
subnets string[]
A list of the IDs of networks associated with the network ACL.
timeouts NetworkAclTimeouts
description str
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inbound_rules Sequence[str]
A list of the IDs of ingress rules associated with the network ACL.
name str
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
network_acl_id str
The ID of the network ACL.
outbound_rules Sequence[str]
A list of the IDs of egress rules associated with the network ACL.
subnets Sequence[str]
A list of the IDs of networks associated with the network ACL.
timeouts NetworkAclTimeoutsArgs
description String
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inboundRules List<String>
A list of the IDs of ingress rules associated with the network ACL.
name String
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
networkAclId String
The ID of the network ACL.
outboundRules List<String>
A list of the IDs of egress rules associated with the network ACL.
subnets List<String>
A list of the IDs of networks associated with the network ACL.
timeouts Property Map

Outputs

All input properties are implicitly available as output properties. Additionally, the NetworkAcl resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
InboundPolicyId string
The ID of the ingress firewall policy for the network ACL.
OutboundPolicyId string
The ID of the egress firewall policy for the network ACL.
Ports List<string>
A list of the port IDs of the subnet gateway.
Status string
The status of the network ACL.
Id string
The provider-assigned unique ID for this managed resource.
InboundPolicyId string
The ID of the ingress firewall policy for the network ACL.
OutboundPolicyId string
The ID of the egress firewall policy for the network ACL.
Ports []string
A list of the port IDs of the subnet gateway.
Status string
The status of the network ACL.
id String
The provider-assigned unique ID for this managed resource.
inboundPolicyId String
The ID of the ingress firewall policy for the network ACL.
outboundPolicyId String
The ID of the egress firewall policy for the network ACL.
ports List<String>
A list of the port IDs of the subnet gateway.
status String
The status of the network ACL.
id string
The provider-assigned unique ID for this managed resource.
inboundPolicyId string
The ID of the ingress firewall policy for the network ACL.
outboundPolicyId string
The ID of the egress firewall policy for the network ACL.
ports string[]
A list of the port IDs of the subnet gateway.
status string
The status of the network ACL.
id str
The provider-assigned unique ID for this managed resource.
inbound_policy_id str
The ID of the ingress firewall policy for the network ACL.
outbound_policy_id str
The ID of the egress firewall policy for the network ACL.
ports Sequence[str]
A list of the port IDs of the subnet gateway.
status str
The status of the network ACL.
id String
The provider-assigned unique ID for this managed resource.
inboundPolicyId String
The ID of the ingress firewall policy for the network ACL.
outboundPolicyId String
The ID of the egress firewall policy for the network ACL.
ports List<String>
A list of the port IDs of the subnet gateway.
status String
The status of the network ACL.

Look up Existing NetworkAcl Resource

Get an existing NetworkAcl 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?: NetworkAclState, opts?: CustomResourceOptions): NetworkAcl
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        inbound_policy_id: Optional[str] = None,
        inbound_rules: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        network_acl_id: Optional[str] = None,
        outbound_policy_id: Optional[str] = None,
        outbound_rules: Optional[Sequence[str]] = None,
        ports: Optional[Sequence[str]] = None,
        status: Optional[str] = None,
        subnets: Optional[Sequence[str]] = None,
        timeouts: Optional[NetworkAclTimeoutsArgs] = None) -> NetworkAcl
func GetNetworkAcl(ctx *Context, name string, id IDInput, state *NetworkAclState, opts ...ResourceOption) (*NetworkAcl, error)
public static NetworkAcl Get(string name, Input<string> id, NetworkAclState? state, CustomResourceOptions? opts = null)
public static NetworkAcl get(String name, Output<String> id, NetworkAclState state, CustomResourceOptions options)
resources:  _:    type: flexibleengine:NetworkAcl    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Description string
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
InboundPolicyId string
The ID of the ingress firewall policy for the network ACL.
InboundRules List<string>
A list of the IDs of ingress rules associated with the network ACL.
Name string
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
NetworkAclId string
The ID of the network ACL.
OutboundPolicyId string
The ID of the egress firewall policy for the network ACL.
OutboundRules List<string>
A list of the IDs of egress rules associated with the network ACL.
Ports List<string>
A list of the port IDs of the subnet gateway.
Status string
The status of the network ACL.
Subnets List<string>
A list of the IDs of networks associated with the network ACL.
Timeouts NetworkAclTimeouts
Description string
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
InboundPolicyId string
The ID of the ingress firewall policy for the network ACL.
InboundRules []string
A list of the IDs of ingress rules associated with the network ACL.
Name string
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
NetworkAclId string
The ID of the network ACL.
OutboundPolicyId string
The ID of the egress firewall policy for the network ACL.
OutboundRules []string
A list of the IDs of egress rules associated with the network ACL.
Ports []string
A list of the port IDs of the subnet gateway.
Status string
The status of the network ACL.
Subnets []string
A list of the IDs of networks associated with the network ACL.
Timeouts NetworkAclTimeoutsArgs
description String
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inboundPolicyId String
The ID of the ingress firewall policy for the network ACL.
inboundRules List<String>
A list of the IDs of ingress rules associated with the network ACL.
name String
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
networkAclId String
The ID of the network ACL.
outboundPolicyId String
The ID of the egress firewall policy for the network ACL.
outboundRules List<String>
A list of the IDs of egress rules associated with the network ACL.
ports List<String>
A list of the port IDs of the subnet gateway.
status String
The status of the network ACL.
subnets List<String>
A list of the IDs of networks associated with the network ACL.
timeouts NetworkAclTimeouts
description string
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inboundPolicyId string
The ID of the ingress firewall policy for the network ACL.
inboundRules string[]
A list of the IDs of ingress rules associated with the network ACL.
name string
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
networkAclId string
The ID of the network ACL.
outboundPolicyId string
The ID of the egress firewall policy for the network ACL.
outboundRules string[]
A list of the IDs of egress rules associated with the network ACL.
ports string[]
A list of the port IDs of the subnet gateway.
status string
The status of the network ACL.
subnets string[]
A list of the IDs of networks associated with the network ACL.
timeouts NetworkAclTimeouts
description str
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inbound_policy_id str
The ID of the ingress firewall policy for the network ACL.
inbound_rules Sequence[str]
A list of the IDs of ingress rules associated with the network ACL.
name str
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
network_acl_id str
The ID of the network ACL.
outbound_policy_id str
The ID of the egress firewall policy for the network ACL.
outbound_rules Sequence[str]
A list of the IDs of egress rules associated with the network ACL.
ports Sequence[str]
A list of the port IDs of the subnet gateway.
status str
The status of the network ACL.
subnets Sequence[str]
A list of the IDs of networks associated with the network ACL.
timeouts NetworkAclTimeoutsArgs
description String
Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
inboundPolicyId String
The ID of the ingress firewall policy for the network ACL.
inboundRules List<String>
A list of the IDs of ingress rules associated with the network ACL.
name String
Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
networkAclId String
The ID of the network ACL.
outboundPolicyId String
The ID of the egress firewall policy for the network ACL.
outboundRules List<String>
A list of the IDs of egress rules associated with the network ACL.
ports List<String>
A list of the port IDs of the subnet gateway.
status String
The status of the network ACL.
subnets List<String>
A list of the IDs of networks associated with the network ACL.
timeouts Property Map

Supporting Types

NetworkAclTimeouts
, NetworkAclTimeoutsArgs

Create string
Delete string
Update string
Create string
Delete string
Update string
create String
delete String
update String
create string
delete string
update string
create str
delete str
update str
create String
delete String
update String

Package Details

Repository
flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
License
Notes
This Pulumi package is based on the flexibleengine Terraform Provider.