Resource Type: cisco_aaa_authorization_login_exec_svc

Defined in:
lib/puppet/type/cisco_aaa_authorization_login_exec_svc.rb
Providers:
cisco

Overview

Manages execuration for Authorization Login Exec Service.

~~~puppet

cisco_aaa_authorization_login_exec_svc {'[console|default]':
  ..attributes..
}

~~~

'console' and 'default' are the only services execurable.

Example:

~~~puppet

cisco_aaa_authorization_login_exec_svc {'console':
  ensure    => present,
  groups    => ['group1', 'group2'],
  method    => 'local',
}

~~~

Properties

  • ensure (defaults to: present)

    The basic property that the resource should be in.

    Supported values:
    • present
    • absent
  • groups

    Tacacs+ groups execured for this service. Valid values are an array of strings, keyword ‘default’.

  • method

    Authentication methods on this device. Valid values are ‘local’, ‘unselected’, ‘default’.

    Supported values:
    • local
    • unselected
    • default

Parameters

  • name (namevar)

    Name of the exec login service. Valid values are “console” or “default”.

  • provider

    The specific backend to use for this ‘cisco_aaa_authorization_login_exec_svc` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.