1. Packages
  2. Cisco Meraki
  3. API Docs
  4. networks
  5. WirelessSsidsFirewallL3FirewallRules
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.networks.WirelessSsidsFirewallL3FirewallRules

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.networks.WirelessSsidsFirewallL3FirewallRules;
    import com.pulumi.meraki.networks.WirelessSsidsFirewallL3FirewallRulesArgs;
    import com.pulumi.meraki.networks.inputs.WirelessSsidsFirewallL3FirewallRulesRuleArgs;
    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 example = new WirelessSsidsFirewallL3FirewallRules("example", WirelessSsidsFirewallL3FirewallRulesArgs.builder()
                .allowLanAccess(true)
                .networkId("string")
                .number("string")
                .rules(WirelessSsidsFirewallL3FirewallRulesRuleArgs.builder()
                    .comment("Allow TCP traffic to subnet with HTTP servers.")
                    .dest_cidr("192.168.1.0/24")
                    .dest_port("443")
                    .policy("allow")
                    .protocol("tcp")
                    .build())
                .build());
    
            ctx.export("merakiNetworksWirelessSsidsFirewallL3FirewallRulesExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:networks:WirelessSsidsFirewallL3FirewallRules
        properties:
          allowLanAccess: true
          networkId: string
          number: string
          rules:
            - comment: Allow TCP traffic to subnet with HTTP servers.
              dest_cidr: 192.168.1.0/24
              dest_port: '443'
              policy: allow
              protocol: tcp
    outputs:
      merakiNetworksWirelessSsidsFirewallL3FirewallRulesExample: ${example}
    

    Create WirelessSsidsFirewallL3FirewallRules Resource

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

    Constructor syntax

    new WirelessSsidsFirewallL3FirewallRules(name: string, args: WirelessSsidsFirewallL3FirewallRulesArgs, opts?: CustomResourceOptions);
    @overload
    def WirelessSsidsFirewallL3FirewallRules(resource_name: str,
                                             args: WirelessSsidsFirewallL3FirewallRulesArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def WirelessSsidsFirewallL3FirewallRules(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             network_id: Optional[str] = None,
                                             number: Optional[str] = None,
                                             allow_lan_access: Optional[bool] = None,
                                             rules: Optional[Sequence[WirelessSsidsFirewallL3FirewallRulesRuleArgs]] = None,
                                             rules_responses: Optional[Sequence[WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs]] = None)
    func NewWirelessSsidsFirewallL3FirewallRules(ctx *Context, name string, args WirelessSsidsFirewallL3FirewallRulesArgs, opts ...ResourceOption) (*WirelessSsidsFirewallL3FirewallRules, error)
    public WirelessSsidsFirewallL3FirewallRules(string name, WirelessSsidsFirewallL3FirewallRulesArgs args, CustomResourceOptions? opts = null)
    public WirelessSsidsFirewallL3FirewallRules(String name, WirelessSsidsFirewallL3FirewallRulesArgs args)
    public WirelessSsidsFirewallL3FirewallRules(String name, WirelessSsidsFirewallL3FirewallRulesArgs args, CustomResourceOptions options)
    
    type: meraki:networks:WirelessSsidsFirewallL3FirewallRules
    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 WirelessSsidsFirewallL3FirewallRulesArgs
    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 WirelessSsidsFirewallL3FirewallRulesArgs
    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 WirelessSsidsFirewallL3FirewallRulesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WirelessSsidsFirewallL3FirewallRulesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WirelessSsidsFirewallL3FirewallRulesArgs
    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 wirelessSsidsFirewallL3FirewallRulesResource = new Meraki.Networks.WirelessSsidsFirewallL3FirewallRules("wirelessSsidsFirewallL3FirewallRulesResource", new()
    {
        NetworkId = "string",
        Number = "string",
        AllowLanAccess = false,
        Rules = new[]
        {
            new Meraki.Networks.Inputs.WirelessSsidsFirewallL3FirewallRulesRuleArgs
            {
                Comment = "string",
                DestCidr = "string",
                DestPort = "string",
                IpVer = "string",
                Policy = "string",
                Protocol = "string",
            },
        },
        RulesResponses = new[]
        {
            new Meraki.Networks.Inputs.WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs
            {
                Comment = "string",
                DestCidr = "string",
                DestPort = "string",
                IpVer = "string",
                Policy = "string",
                Protocol = "string",
            },
        },
    });
    
    example, err := networks.NewWirelessSsidsFirewallL3FirewallRules(ctx, "wirelessSsidsFirewallL3FirewallRulesResource", &networks.WirelessSsidsFirewallL3FirewallRulesArgs{
    	NetworkId:      pulumi.String("string"),
    	Number:         pulumi.String("string"),
    	AllowLanAccess: pulumi.Bool(false),
    	Rules: networks.WirelessSsidsFirewallL3FirewallRulesRuleArray{
    		&networks.WirelessSsidsFirewallL3FirewallRulesRuleArgs{
    			Comment:  pulumi.String("string"),
    			DestCidr: pulumi.String("string"),
    			DestPort: pulumi.String("string"),
    			IpVer:    pulumi.String("string"),
    			Policy:   pulumi.String("string"),
    			Protocol: pulumi.String("string"),
    		},
    	},
    	RulesResponses: networks.WirelessSsidsFirewallL3FirewallRulesRulesResponseArray{
    		&networks.WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs{
    			Comment:  pulumi.String("string"),
    			DestCidr: pulumi.String("string"),
    			DestPort: pulumi.String("string"),
    			IpVer:    pulumi.String("string"),
    			Policy:   pulumi.String("string"),
    			Protocol: pulumi.String("string"),
    		},
    	},
    })
    
    var wirelessSsidsFirewallL3FirewallRulesResource = new WirelessSsidsFirewallL3FirewallRules("wirelessSsidsFirewallL3FirewallRulesResource", WirelessSsidsFirewallL3FirewallRulesArgs.builder()
        .networkId("string")
        .number("string")
        .allowLanAccess(false)
        .rules(WirelessSsidsFirewallL3FirewallRulesRuleArgs.builder()
            .comment("string")
            .destCidr("string")
            .destPort("string")
            .ipVer("string")
            .policy("string")
            .protocol("string")
            .build())
        .rulesResponses(WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs.builder()
            .comment("string")
            .destCidr("string")
            .destPort("string")
            .ipVer("string")
            .policy("string")
            .protocol("string")
            .build())
        .build());
    
    wireless_ssids_firewall_l3_firewall_rules_resource = meraki.networks.WirelessSsidsFirewallL3FirewallRules("wirelessSsidsFirewallL3FirewallRulesResource",
        network_id="string",
        number="string",
        allow_lan_access=False,
        rules=[meraki.networks.WirelessSsidsFirewallL3FirewallRulesRuleArgs(
            comment="string",
            dest_cidr="string",
            dest_port="string",
            ip_ver="string",
            policy="string",
            protocol="string",
        )],
        rules_responses=[meraki.networks.WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs(
            comment="string",
            dest_cidr="string",
            dest_port="string",
            ip_ver="string",
            policy="string",
            protocol="string",
        )])
    
    const wirelessSsidsFirewallL3FirewallRulesResource = new meraki.networks.WirelessSsidsFirewallL3FirewallRules("wirelessSsidsFirewallL3FirewallRulesResource", {
        networkId: "string",
        number: "string",
        allowLanAccess: false,
        rules: [{
            comment: "string",
            destCidr: "string",
            destPort: "string",
            ipVer: "string",
            policy: "string",
            protocol: "string",
        }],
        rulesResponses: [{
            comment: "string",
            destCidr: "string",
            destPort: "string",
            ipVer: "string",
            policy: "string",
            protocol: "string",
        }],
    });
    
    type: meraki:networks:WirelessSsidsFirewallL3FirewallRules
    properties:
        allowLanAccess: false
        networkId: string
        number: string
        rules:
            - comment: string
              destCidr: string
              destPort: string
              ipVer: string
              policy: string
              protocol: string
        rulesResponses:
            - comment: string
              destCidr: string
              destPort: string
              ipVer: string
              policy: string
              protocol: string
    

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

    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    AllowLanAccess bool
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    Rules List<WirelessSsidsFirewallL3FirewallRulesRule>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    RulesResponses List<WirelessSsidsFirewallL3FirewallRulesRulesResponse>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    AllowLanAccess bool
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    Rules []WirelessSsidsFirewallL3FirewallRulesRuleArgs
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    RulesResponses []WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    allowLanAccess Boolean
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    rules List<WirelessSsidsFirewallL3FirewallRulesRule>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rulesResponses List<WirelessSsidsFirewallL3FirewallRulesRulesResponse>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    networkId string
    networkId path parameter. Network ID
    number string
    number path parameter.
    allowLanAccess boolean
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    rules WirelessSsidsFirewallL3FirewallRulesRule[]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rulesResponses WirelessSsidsFirewallL3FirewallRulesRulesResponse[]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    network_id str
    networkId path parameter. Network ID
    number str
    number path parameter.
    allow_lan_access bool
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    rules Sequence[WirelessSsidsFirewallL3FirewallRulesRuleArgs]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rules_responses Sequence[WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    allowLanAccess Boolean
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    rules List<Property Map>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rulesResponses List<Property Map>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing WirelessSsidsFirewallL3FirewallRules Resource

    Get an existing WirelessSsidsFirewallL3FirewallRules 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?: WirelessSsidsFirewallL3FirewallRulesState, opts?: CustomResourceOptions): WirelessSsidsFirewallL3FirewallRules
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_lan_access: Optional[bool] = None,
            network_id: Optional[str] = None,
            number: Optional[str] = None,
            rules: Optional[Sequence[WirelessSsidsFirewallL3FirewallRulesRuleArgs]] = None,
            rules_responses: Optional[Sequence[WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs]] = None) -> WirelessSsidsFirewallL3FirewallRules
    func GetWirelessSsidsFirewallL3FirewallRules(ctx *Context, name string, id IDInput, state *WirelessSsidsFirewallL3FirewallRulesState, opts ...ResourceOption) (*WirelessSsidsFirewallL3FirewallRules, error)
    public static WirelessSsidsFirewallL3FirewallRules Get(string name, Input<string> id, WirelessSsidsFirewallL3FirewallRulesState? state, CustomResourceOptions? opts = null)
    public static WirelessSsidsFirewallL3FirewallRules get(String name, Output<String> id, WirelessSsidsFirewallL3FirewallRulesState 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:
    AllowLanAccess bool
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Rules List<WirelessSsidsFirewallL3FirewallRulesRule>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    RulesResponses List<WirelessSsidsFirewallL3FirewallRulesRulesResponse>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    AllowLanAccess bool
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Rules []WirelessSsidsFirewallL3FirewallRulesRuleArgs
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    RulesResponses []WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    allowLanAccess Boolean
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    rules List<WirelessSsidsFirewallL3FirewallRulesRule>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rulesResponses List<WirelessSsidsFirewallL3FirewallRulesRulesResponse>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    allowLanAccess boolean
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    networkId string
    networkId path parameter. Network ID
    number string
    number path parameter.
    rules WirelessSsidsFirewallL3FirewallRulesRule[]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rulesResponses WirelessSsidsFirewallL3FirewallRulesRulesResponse[]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    allow_lan_access bool
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    network_id str
    networkId path parameter. Network ID
    number str
    number path parameter.
    rules Sequence[WirelessSsidsFirewallL3FirewallRulesRuleArgs]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rules_responses Sequence[WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs]
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    allowLanAccess Boolean
    Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional)
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    rules List<Property Map>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).
    rulesResponses List<Property Map>
    An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule).

    Supporting Types

    WirelessSsidsFirewallL3FirewallRulesRule, WirelessSsidsFirewallL3FirewallRulesRuleArgs

    Comment string
    Description of the rule (optional)
    DestCidr string
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    DestPort string
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    IpVer string
    Ip Ver
    Policy string
    'allow' or 'deny' traffic specified by this rule
    Protocol string
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    Comment string
    Description of the rule (optional)
    DestCidr string
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    DestPort string
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    IpVer string
    Ip Ver
    Policy string
    'allow' or 'deny' traffic specified by this rule
    Protocol string
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment String
    Description of the rule (optional)
    destCidr String
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    destPort String
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ipVer String
    Ip Ver
    policy String
    'allow' or 'deny' traffic specified by this rule
    protocol String
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment string
    Description of the rule (optional)
    destCidr string
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    destPort string
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ipVer string
    Ip Ver
    policy string
    'allow' or 'deny' traffic specified by this rule
    protocol string
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment str
    Description of the rule (optional)
    dest_cidr str
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    dest_port str
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ip_ver str
    Ip Ver
    policy str
    'allow' or 'deny' traffic specified by this rule
    protocol str
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment String
    Description of the rule (optional)
    destCidr String
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    destPort String
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ipVer String
    Ip Ver
    policy String
    'allow' or 'deny' traffic specified by this rule
    protocol String
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')

    WirelessSsidsFirewallL3FirewallRulesRulesResponse, WirelessSsidsFirewallL3FirewallRulesRulesResponseArgs

    Comment string
    Description of the rule (optional)
    DestCidr string
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    DestPort string
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    IpVer string
    Ip Version
    Policy string
    'allow' or 'deny' traffic specified by this rule
    Protocol string
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    Comment string
    Description of the rule (optional)
    DestCidr string
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    DestPort string
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    IpVer string
    Ip Version
    Policy string
    'allow' or 'deny' traffic specified by this rule
    Protocol string
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment String
    Description of the rule (optional)
    destCidr String
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    destPort String
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ipVer String
    Ip Version
    policy String
    'allow' or 'deny' traffic specified by this rule
    protocol String
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment string
    Description of the rule (optional)
    destCidr string
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    destPort string
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ipVer string
    Ip Version
    policy string
    'allow' or 'deny' traffic specified by this rule
    protocol string
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment str
    Description of the rule (optional)
    dest_cidr str
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    dest_port str
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ip_ver str
    Ip Version
    policy str
    'allow' or 'deny' traffic specified by this rule
    protocol str
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')
    comment String
    Description of the rule (optional)
    destCidr String
    Comma-separated list of destination IP address(es) (in IP or CIDR notation), fully-qualified domain names (FQDN) or 'any'
    destPort String
    Comma-separated list of destination port(s) (integer in the range 1-65535), or 'any'
    ipVer String
    Ip Version
    policy String
    'allow' or 'deny' traffic specified by this rule
    protocol String
    The type of protocol (must be 'tcp', 'udp', 'icmp', 'icmp6' or 'any')

    Import

    $ pulumi import meraki:networks/wirelessSsidsFirewallL3FirewallRules:WirelessSsidsFirewallL3FirewallRules example "network_id,number"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi