1. Packages
  2. Equinix
  3. API Docs
  4. networkedge
  5. AclTemplate
Equinix v0.8.0 published on Tuesday, Apr 2, 2024 by Equinix

equinix.networkedge.AclTemplate

Explore with Pulumi AI

equinix logo
Equinix v0.8.0 published on Tuesday, Apr 2, 2024 by Equinix

    Resource equinix.networkedge.AclTemplate allows creation and management of Equinix Network Edge device Access Control List templates.

    Device ACL templates give possibility to define set of rules will allowed inbound traffic. Templates can be assigned to the network devices.

    Example Usage

    using System.Collections.Generic;
    using Pulumi;
    using Equinix = Pulumi.Equinix;
    
    return await Deployment.RunAsync(() => 
    {
        var aclTemplate = new Equinix.NetworkEdge.AclTemplate("aclTemplate", new()
        {
            Name = "test",
            Description = "Test ACL template",
            InboundRules = new[]
            {
                new Equinix.NetworkEdge.Inputs.AclTemplateInboundRuleArgs
                {
                    Subnet = "1.1.1.1/32",
                    Protocol = "IP",
                    SrcPort = "any",
                    DstPort = "any",
                    Description = "inbound rule description",
                },
                new Equinix.NetworkEdge.Inputs.AclTemplateInboundRuleArgs
                {
                    Subnet = "2.2.2.2/28",
                    Protocol = "TCP",
                    SrcPort = "any",
                    DstPort = "any",
                    Description = "inbound rule description",
                },
            },
        });
    
        return new Dictionary<string, object?>
        {
            ["templateId"] = aclTemplate.Id,
        };
    });
    
    package main
    
    import (
    	"github.com/equinix/pulumi-equinix/sdk/go/equinix/networkedge"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		aclTemplate, err := networkedge.NewAclTemplate(ctx, "aclTemplate", &networkedge.AclTemplateArgs{
    			Name:        pulumi.String("test"),
    			Description: pulumi.String("Test ACL template"),
    			InboundRules: networkedge.AclTemplateInboundRuleArray{
    				&networkedge.AclTemplateInboundRuleArgs{
    					Subnet:      pulumi.String("1.1.1.1/32"),
    					Protocol:    pulumi.String("IP"),
    					SrcPort:     pulumi.String("any"),
    					DstPort:     pulumi.String("any"),
    					Description: pulumi.String("inbound rule description"),
    				},
    				&networkedge.AclTemplateInboundRuleArgs{
    					Subnet:      pulumi.String("2.2.2.2/28"),
    					Protocol:    pulumi.String("TCP"),
    					SrcPort:     pulumi.String("any"),
    					DstPort:     pulumi.String("any"),
    					Description: pulumi.String("inbound rule description"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("templateId", aclTemplate.ID())
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.equinix.pulumi.networkedge.AclTemplate;
    import com.equinix.pulumi.networkedge.AclTemplateArgs;
    import com.equinix.pulumi.networkedge.inputs.AclTemplateInboundRuleArgs;
    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 aclTemplate = new AclTemplate("aclTemplate", AclTemplateArgs.builder()        
                .name("test")
                .description("Test ACL template")
                .inboundRules(            
                    AclTemplateInboundRuleArgs.builder()
                        .subnet("1.1.1.1/32")
                        .protocol("IP")
                        .srcPort("any")
                        .dstPort("any")
                        .description("inbound rule description")
                        .build(),
                    AclTemplateInboundRuleArgs.builder()
                        .subnet("2.2.2.2/28")
                        .protocol("TCP")
                        .srcPort("any")
                        .dstPort("any")
                        .description("inbound rule description")
                        .build())
                .build());
    
            ctx.export("templateId", aclTemplate.id());
        }
    }
    
    import pulumi
    import pulumi_equinix as equinix
    
    acl_template = equinix.networkedge.AclTemplate("aclTemplate",
        name="test",
        description="Test ACL template",
        inbound_rules=[
            equinix.networkedge.AclTemplateInboundRuleArgs(
                subnet="1.1.1.1/32",
                protocol="IP",
                src_port="any",
                dst_port="any",
                description="inbound rule description",
            ),
            equinix.networkedge.AclTemplateInboundRuleArgs(
                subnet="2.2.2.2/28",
                protocol="TCP",
                src_port="any",
                dst_port="any",
                description="inbound rule description",
            ),
        ])
    pulumi.export("templateId", acl_template.id)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as equinix from "@equinix-labs/pulumi-equinix";
    
    const aclTemplate = new equinix.networkedge.AclTemplate("aclTemplate", {
        name: "test",
        description: "Test ACL template",
        inboundRules: [
            {
                subnet: "1.1.1.1/32",
                protocol: "IP",
                srcPort: "any",
                dstPort: "any",
                description: "inbound rule description",
            },
            {
                subnet: "2.2.2.2/28",
                protocol: "TCP",
                srcPort: "any",
                dstPort: "any",
                description: "inbound rule description",
            },
        ],
    });
    export const templateId = aclTemplate.id;
    
    resources:
      aclTemplate:
        type: equinix:networkedge:AclTemplate
        properties:
          name: test
          description: Test ACL template
          inboundRules:
          - subnet: 1.1.1.1/32
            protocol: IP
            srcPort: any
            dstPort: any
            description: inbound rule description
          - subnet: 2.2.2.2/28
            protocol: TCP
            srcPort: any
            dstPort: any
            description: inbound rule description
    outputs:
      templateId: ${aclTemplate.id}
    

    Create AclTemplate Resource

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

    Constructor syntax

    new AclTemplate(name: string, args: AclTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def AclTemplate(resource_name: str,
                    args: AclTemplateArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def AclTemplate(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    inbound_rules: Optional[Sequence[AclTemplateInboundRuleArgs]] = None,
                    description: Optional[str] = None,
                    metro_code: Optional[str] = None,
                    name: Optional[str] = None,
                    project_id: Optional[str] = None)
    func NewAclTemplate(ctx *Context, name string, args AclTemplateArgs, opts ...ResourceOption) (*AclTemplate, error)
    public AclTemplate(string name, AclTemplateArgs args, CustomResourceOptions? opts = null)
    public AclTemplate(String name, AclTemplateArgs args)
    public AclTemplate(String name, AclTemplateArgs args, CustomResourceOptions options)
    
    type: equinix:networkedge:AclTemplate
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AclTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AclTemplateArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AclTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AclTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AclTemplateArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var aclTemplateResource = new Equinix.NetworkEdge.AclTemplate("aclTemplateResource", new()
    {
        InboundRules = new[]
        {
            new Equinix.NetworkEdge.Inputs.AclTemplateInboundRuleArgs
            {
                DstPort = "string",
                Protocol = "string",
                SrcPort = "string",
                Description = "string",
                SequenceNumber = 0,
                Subnet = "string",
            },
        },
        Description = "string",
        Name = "string",
        ProjectId = "string",
    });
    
    example, err := networkedge.NewAclTemplate(ctx, "aclTemplateResource", &networkedge.AclTemplateArgs{
    	InboundRules: networkedge.AclTemplateInboundRuleArray{
    		&networkedge.AclTemplateInboundRuleArgs{
    			DstPort:        pulumi.String("string"),
    			Protocol:       pulumi.String("string"),
    			SrcPort:        pulumi.String("string"),
    			Description:    pulumi.String("string"),
    			SequenceNumber: pulumi.Int(0),
    			Subnet:         pulumi.String("string"),
    		},
    	},
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	ProjectId:   pulumi.String("string"),
    })
    
    var aclTemplateResource = new AclTemplate("aclTemplateResource", AclTemplateArgs.builder()        
        .inboundRules(AclTemplateInboundRuleArgs.builder()
            .dstPort("string")
            .protocol("string")
            .srcPort("string")
            .description("string")
            .sequenceNumber(0)
            .subnet("string")
            .build())
        .description("string")
        .name("string")
        .projectId("string")
        .build());
    
    acl_template_resource = equinix.networkedge.AclTemplate("aclTemplateResource",
        inbound_rules=[equinix.networkedge.AclTemplateInboundRuleArgs(
            dst_port="string",
            protocol="string",
            src_port="string",
            description="string",
            sequence_number=0,
            subnet="string",
        )],
        description="string",
        name="string",
        project_id="string")
    
    const aclTemplateResource = new equinix.networkedge.AclTemplate("aclTemplateResource", {
        inboundRules: [{
            dstPort: "string",
            protocol: "string",
            srcPort: "string",
            description: "string",
            sequenceNumber: 0,
            subnet: "string",
        }],
        description: "string",
        name: "string",
        projectId: "string",
    });
    
    type: equinix:networkedge:AclTemplate
    properties:
        description: string
        inboundRules:
            - description: string
              dstPort: string
              protocol: string
              sequenceNumber: 0
              srcPort: string
              subnet: string
        name: string
        projectId: string
    

    AclTemplate Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AclTemplate resource accepts the following input properties:

    InboundRules List<AclTemplateInboundRule>

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    Description string
    Inbound rule description, up to 200 characters.
    MetroCode string
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    Name string
    ACL template name.
    ProjectId string
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    InboundRules []AclTemplateInboundRuleArgs

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    Description string
    Inbound rule description, up to 200 characters.
    MetroCode string
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    Name string
    ACL template name.
    ProjectId string
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    inboundRules List<AclTemplateInboundRule>

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    description String
    Inbound rule description, up to 200 characters.
    metroCode String
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name String
    ACL template name.
    projectId String
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    inboundRules AclTemplateInboundRule[]

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    description string
    Inbound rule description, up to 200 characters.
    metroCode string
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name string
    ACL template name.
    projectId string
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    inbound_rules Sequence[AclTemplateInboundRuleArgs]

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    description str
    Inbound rule description, up to 200 characters.
    metro_code str
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name str
    ACL template name.
    project_id str
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    inboundRules List<Property Map>

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    description String
    Inbound rule description, up to 200 characters.
    metroCode String
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name String
    ACL template name.
    projectId String
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.

    Outputs

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

    DeviceAclStatus string
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    DeviceDetails List<AclTemplateDeviceDetail>
    List of the devices where the ACL template is applied.
    DeviceId string
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    Id string
    The provider-assigned unique ID for this managed resource.
    Uuid string
    Device uuid.
    DeviceAclStatus string
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    DeviceDetails []AclTemplateDeviceDetail
    List of the devices where the ACL template is applied.
    DeviceId string
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    Id string
    The provider-assigned unique ID for this managed resource.
    Uuid string
    Device uuid.
    deviceAclStatus String
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    deviceDetails List<AclTemplateDeviceDetail>
    List of the devices where the ACL template is applied.
    deviceId String
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    id String
    The provider-assigned unique ID for this managed resource.
    uuid String
    Device uuid.
    deviceAclStatus string
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    deviceDetails AclTemplateDeviceDetail[]
    List of the devices where the ACL template is applied.
    deviceId string
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    id string
    The provider-assigned unique ID for this managed resource.
    uuid string
    Device uuid.
    device_acl_status str
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    device_details Sequence[AclTemplateDeviceDetail]
    List of the devices where the ACL template is applied.
    device_id str
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    id str
    The provider-assigned unique ID for this managed resource.
    uuid str
    Device uuid.
    deviceAclStatus String
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    deviceDetails List<Property Map>
    List of the devices where the ACL template is applied.
    deviceId String
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    id String
    The provider-assigned unique ID for this managed resource.
    uuid String
    Device uuid.

    Look up Existing AclTemplate Resource

    Get an existing AclTemplate 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?: AclTemplateState, opts?: CustomResourceOptions): AclTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            device_acl_status: Optional[str] = None,
            device_details: Optional[Sequence[AclTemplateDeviceDetailArgs]] = None,
            device_id: Optional[str] = None,
            inbound_rules: Optional[Sequence[AclTemplateInboundRuleArgs]] = None,
            metro_code: Optional[str] = None,
            name: Optional[str] = None,
            project_id: Optional[str] = None,
            uuid: Optional[str] = None) -> AclTemplate
    func GetAclTemplate(ctx *Context, name string, id IDInput, state *AclTemplateState, opts ...ResourceOption) (*AclTemplate, error)
    public static AclTemplate Get(string name, Input<string> id, AclTemplateState? state, CustomResourceOptions? opts = null)
    public static AclTemplate get(String name, Output<String> id, AclTemplateState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    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:
    Description string
    Inbound rule description, up to 200 characters.
    DeviceAclStatus string
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    DeviceDetails List<AclTemplateDeviceDetail>
    List of the devices where the ACL template is applied.
    DeviceId string
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    InboundRules List<AclTemplateInboundRule>

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    MetroCode string
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    Name string
    ACL template name.
    ProjectId string
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    Uuid string
    Device uuid.
    Description string
    Inbound rule description, up to 200 characters.
    DeviceAclStatus string
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    DeviceDetails []AclTemplateDeviceDetailArgs
    List of the devices where the ACL template is applied.
    DeviceId string
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    InboundRules []AclTemplateInboundRuleArgs

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    MetroCode string
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    Name string
    ACL template name.
    ProjectId string
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    Uuid string
    Device uuid.
    description String
    Inbound rule description, up to 200 characters.
    deviceAclStatus String
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    deviceDetails List<AclTemplateDeviceDetail>
    List of the devices where the ACL template is applied.
    deviceId String
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    inboundRules List<AclTemplateInboundRule>

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    metroCode String
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name String
    ACL template name.
    projectId String
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    uuid String
    Device uuid.
    description string
    Inbound rule description, up to 200 characters.
    deviceAclStatus string
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    deviceDetails AclTemplateDeviceDetail[]
    List of the devices where the ACL template is applied.
    deviceId string
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    inboundRules AclTemplateInboundRule[]

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    metroCode string
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name string
    ACL template name.
    projectId string
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    uuid string
    Device uuid.
    description str
    Inbound rule description, up to 200 characters.
    device_acl_status str
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    device_details Sequence[AclTemplateDeviceDetailArgs]
    List of the devices where the ACL template is applied.
    device_id str
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    inbound_rules Sequence[AclTemplateInboundRuleArgs]

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    metro_code str
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name str
    ACL template name.
    project_id str
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    uuid str
    Device uuid.
    description String
    Inbound rule description, up to 200 characters.
    deviceAclStatus String
    Status of ACL template provisioning process, where template was applied. One of PROVISIONING, PROVISIONED.
    deviceDetails List<Property Map>
    List of the devices where the ACL template is applied.
    deviceId String
    (Deprecated) Identifier of a network device where template was applied.

    Deprecated: Refer to device details get device information

    inboundRules List<Property Map>

    One or more rules to specify allowed inbound traffic. Rules are ordered, matching traffic rule stops processing subsequent ones.

    The inbound_rule block has below fields:

    metroCode String
    ACL template location metro code.

    Deprecated: Metro Code is no longer required

    name String
    ACL template name.
    projectId String
    Unique Identifier for the project resource where the acl template is scoped to.If you leave it out, the ACL template will be created under the default project id of your organization.
    uuid String
    Device uuid.

    Supporting Types

    AclRuleProtocolType, AclRuleProtocolTypeArgs

    IP
    IP
    TCP
    TCP
    UDP
    UDP
    AclRuleProtocolTypeIP
    IP
    AclRuleProtocolTypeTCP
    TCP
    AclRuleProtocolTypeUDP
    UDP
    IP
    IP
    TCP
    TCP
    UDP
    UDP
    IP
    IP
    TCP
    TCP
    UDP
    UDP
    IP
    IP
    TCP
    TCP
    UDP
    UDP
    "IP"
    IP
    "TCP"
    TCP
    "UDP"
    UDP

    AclTemplateDeviceDetail, AclTemplateDeviceDetailArgs

    AclStatus string
    Device ACL provisioning status where template was applied. One of PROVISIONING, PROVISIONED.
    Name string
    ACL template name.
    Uuid string
    Device uuid.
    AclStatus string
    Device ACL provisioning status where template was applied. One of PROVISIONING, PROVISIONED.
    Name string
    ACL template name.
    Uuid string
    Device uuid.
    aclStatus String
    Device ACL provisioning status where template was applied. One of PROVISIONING, PROVISIONED.
    name String
    ACL template name.
    uuid String
    Device uuid.
    aclStatus string
    Device ACL provisioning status where template was applied. One of PROVISIONING, PROVISIONED.
    name string
    ACL template name.
    uuid string
    Device uuid.
    acl_status str
    Device ACL provisioning status where template was applied. One of PROVISIONING, PROVISIONED.
    name str
    ACL template name.
    uuid str
    Device uuid.
    aclStatus String
    Device ACL provisioning status where template was applied. One of PROVISIONING, PROVISIONED.
    name String
    ACL template name.
    uuid String
    Device uuid.

    AclTemplateInboundRule, AclTemplateInboundRuleArgs

    DstPort string
    Inbound traffic destination ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    Protocol string | Pulumi.Equinix.NetworkEdge.AclRuleProtocolType
    Inbound traffic protocol. One of IP, TCP, UDP.
    SrcPort string
    Inbound traffic source ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    Description string
    Inbound rule description, up to 200 characters.
    SequenceNumber int
    Inbound rule sequence number
    SourceType string
    Type of traffic source used in a given inbound rule

    Deprecated: Source Type will not be returned

    Subnet string
    Inbound traffic source IP subnet in CIDR format.
    Subnets List<string>
    Inbound traffic source IP subnets in CIDR format.

    Deprecated: Use Subnet instead

    DstPort string
    Inbound traffic destination ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    Protocol string | AclRuleProtocolType
    Inbound traffic protocol. One of IP, TCP, UDP.
    SrcPort string
    Inbound traffic source ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    Description string
    Inbound rule description, up to 200 characters.
    SequenceNumber int
    Inbound rule sequence number
    SourceType string
    Type of traffic source used in a given inbound rule

    Deprecated: Source Type will not be returned

    Subnet string
    Inbound traffic source IP subnet in CIDR format.
    Subnets []string
    Inbound traffic source IP subnets in CIDR format.

    Deprecated: Use Subnet instead

    dstPort String
    Inbound traffic destination ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    protocol String | AclRuleProtocolType
    Inbound traffic protocol. One of IP, TCP, UDP.
    srcPort String
    Inbound traffic source ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    description String
    Inbound rule description, up to 200 characters.
    sequenceNumber Integer
    Inbound rule sequence number
    sourceType String
    Type of traffic source used in a given inbound rule

    Deprecated: Source Type will not be returned

    subnet String
    Inbound traffic source IP subnet in CIDR format.
    subnets List<String>
    Inbound traffic source IP subnets in CIDR format.

    Deprecated: Use Subnet instead

    dstPort string
    Inbound traffic destination ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    protocol string | AclRuleProtocolType
    Inbound traffic protocol. One of IP, TCP, UDP.
    srcPort string
    Inbound traffic source ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    description string
    Inbound rule description, up to 200 characters.
    sequenceNumber number
    Inbound rule sequence number
    sourceType string
    Type of traffic source used in a given inbound rule

    Deprecated: Source Type will not be returned

    subnet string
    Inbound traffic source IP subnet in CIDR format.
    subnets string[]
    Inbound traffic source IP subnets in CIDR format.

    Deprecated: Use Subnet instead

    dst_port str
    Inbound traffic destination ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    protocol str | AclRuleProtocolType
    Inbound traffic protocol. One of IP, TCP, UDP.
    src_port str
    Inbound traffic source ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    description str
    Inbound rule description, up to 200 characters.
    sequence_number int
    Inbound rule sequence number
    source_type str
    Type of traffic source used in a given inbound rule

    Deprecated: Source Type will not be returned

    subnet str
    Inbound traffic source IP subnet in CIDR format.
    subnets Sequence[str]
    Inbound traffic source IP subnets in CIDR format.

    Deprecated: Use Subnet instead

    dstPort String
    Inbound traffic destination ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    protocol String | "IP" | "TCP" | "UDP"
    Inbound traffic protocol. One of IP, TCP, UDP.
    srcPort String
    Inbound traffic source ports. Allowed values are a comma separated list of ports, e.g., 20,22,23, port range, e.g., 1023-1040 or word any.
    description String
    Inbound rule description, up to 200 characters.
    sequenceNumber Number
    Inbound rule sequence number
    sourceType String
    Type of traffic source used in a given inbound rule

    Deprecated: Source Type will not be returned

    subnet String
    Inbound traffic source IP subnet in CIDR format.
    subnets List<String>
    Inbound traffic source IP subnets in CIDR format.

    Deprecated: Use Subnet instead

    Package Details

    Repository
    equinix equinix/pulumi-equinix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the equinix Terraform Provider.
    equinix logo
    Equinix v0.8.0 published on Tuesday, Apr 2, 2024 by Equinix