Resource Type: cisco_acl
- Defined in:
- lib/puppet/type/cisco_acl.rb
- Providers:
-
cisco
Overview
Manages configuration of an acl instance
~~~puppet cisco_acl
..attributes..
~~~
‘<string>` is the name of the acl instance.
Example:
~~~puppet
cisco_acl { 'ipv4 my_acl' :
ensure => present,
stats_per_entry => false,
fragments => 'permit'
}
~~~
Example Title Patterns
~~~puppet
cisco_acl { 'my_acl' :
ensure => present,
afi => 'ipv4',
}
~~~
~~~puppet
cisco_acl { 'ipv4' :
ensure => present,
acl_name => 'my_acl'
}
~~~
~~~puppet
cisco_acl { 'ipv4 my_acl' :
ensure => present,
}
~~~