Practice Free EX362 Exam Online Questions
Tower job to create a user + add to multiple groups + grant HBAC access in one run (single input variable).
- A . See the Explanation.
A
Explanation:
– hosts: ipa1.example.com become: true
vars:
newuser: "{{ username }}"
groups_to_add: [webadmins, aap-users] tasks:
– community.general.ipa_user: ipa_host: ipa1.example.com ipa_user: admin
ipa_pass: "{{ ipaadmin_password }}"
uid: "{{ newuser }}"
givenname: "{{ newuser|capitalize }}"
sn: "User"
mail: "{{ newuser }}@example.com"
userpassword: "TempP@ss1"
state: present
– community.general.ipa_group:
ipa_host: ipa1.example.com
ipa_user: admin
ipa_pass: "{{ ipaadmin_password }}"
name: "{{ item }}"
user: ["{{ newuser }}"]
state: present
loop: "{{ groups_to_add }}"
– command: ipa hbactest –user={{ newuser }} –host=app1.example.com –service=sshd
register: hb
changed_when: false
– debug: var=hb.stdout
In the Job Template, add a Survey variable username and launch.
Make your primary IdM server the site NTP source using Chrony and confirm time sync.
- A . See the Explanation.
A
Explanation:
Make your primary IdM server the site NTP source using Chrony and confirm time sync.
- A . See the Explanation.
A
Explanation:
Create an RBAC model so Helpdesk members can reset user passwords but cannot modify other attributes.
- A . See the Explanation.
A
Explanation:
Create user life-cycle workflow: disable user, move to preserved, then fully delete.
- A . See the Explanation.
A
Explanation:
kinit admin
ipa user-disable jsmith
ipa user-del jsmith –preserve
ipa user-del jsmith –no-preserve # later, final delete
Create user life-cycle workflow: disable user, move to preserved, then fully delete.
- A . See the Explanation.
A
Explanation:
kinit admin
ipa user-disable jsmith
ipa user-del jsmith –preserve
ipa user-del jsmith –no-preserve # later, final delete
Install an IdM server with external DNS (no integrated DNS). Configure global DNS forwarders afterwards from IdM.
- A . See the Explanation.
A
Explanation:
Install an IdM server with external DNS (no integrated DNS). Configure global DNS forwarders afterwards from IdM.
- A . See the Explanation.
A
Explanation:
Install an IdM server with external DNS (no integrated DNS). Configure global DNS forwarders afterwards from IdM.
- A . See the Explanation.
A
Explanation:
Install an IdM server with external DNS (no integrated DNS). Configure global DNS forwarders afterwards from IdM.
- A . See the Explanation.
A
Explanation:
