-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from meraki/develop
v2.16.5
- Loading branch information
Showing
5 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
namespace: cisco | ||
name: meraki | ||
version: 2.16.4 | ||
version: 2.16.5 | ||
readme: README.md | ||
authors: | ||
- Francisco Muñoz <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
- hosts: localhost | ||
vars: | ||
vars: | ||
org_id: 828099381482762270 # API TEST | ||
gather_facts: false | ||
tasks: | ||
|
||
- name: Get security login settings | ||
cisco.meraki.organizations_login_security_info: | ||
organizationId: "{{ org_id }}" | ||
register: | ||
result | ||
|
||
- name: Show result | ||
ansible.builtin.debug: | ||
msg: "{{ result }}" | ||
|
||
- name: Update security login settings | ||
cisco.meraki.organizations_login_security: | ||
meraki_suppress_logging: false | ||
organizationId: "{{ org_id }}" | ||
state: present | ||
accountLockoutAttempts: 3 | ||
enforceIdleTimeout: true | ||
enforceTwoFactorAuth: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters