mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
a new module pagerduty_user (#1025)
* a new module pagerduty_user * fixed issues related to sanity * fixed issues related to sanity * modified the module * shippable * typo * shippable * removed e * shippable * shippable * shippable * updated test files * Update plugins/modules/monitoring/pagerduty_user.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
parent
7f890c4645
commit
63fbcdb4b1
5 changed files with 294 additions and 0 deletions
1
tests/integration/targets/pagerduty_user/aliases
Normal file
1
tests/integration/targets/pagerduty_user/aliases
Normal file
|
@ -0,0 +1 @@
|
|||
unsupported
|
24
tests/integration/targets/pagerduty_user/tasks/main.yml
Normal file
24
tests/integration/targets/pagerduty_user/tasks/main.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Test code for pagerduty_user module
|
||||
#
|
||||
# Copyright: (c) 2020, Zainab Alsaffar <Zainab.Alsaffar@mail.rit.edu>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
- name: Install required library
|
||||
pip:
|
||||
name: pdpyras
|
||||
state: present
|
||||
|
||||
- name: Create a user account on PagerDuty
|
||||
pagerduty_user:
|
||||
access_token: '{{ pd_api_access_token }}'
|
||||
pd_user: '{{ fullname }}'
|
||||
pd_email: '{{ email }}'
|
||||
pd_role: '{{ pd_role }}'
|
||||
pd_teams: '{{ pd_team }}'
|
||||
state: present
|
||||
|
||||
- name: Remove a user account from PagerDuty
|
||||
pagerduty_user:
|
||||
access_token: "{{ pd_api_access_token }}"
|
||||
pd_user: "{{ fullname }}"
|
||||
pd_email: "{{ email }}"
|
||||
state: "absent"
|
5
tests/integration/targets/pagerduty_user/vars/main.yml
Normal file
5
tests/integration/targets/pagerduty_user/vars/main.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
pd_api_access_token: your_api_access_token
|
||||
fullname: User Name
|
||||
email: user@email.com
|
||||
pd_role: observer
|
||||
pd_teams: team1
|
Loading…
Add table
Add a link
Reference in a new issue