Skip to content

Commit ec6d32c

Browse files
Merge pull request #143 from ansible-hmc-org/dev-collection
correct roles readme document
2 parents bd0fd24 + 461f20d commit ec6d32c

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

roles/password_policy/README.rst

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ None
1919
Role Variables
2020
--------------
2121

22-
- password_policy_hmc_username:
22+
- **password_policy_hmc_username**
2323

2424
- type: str
2525
- required: true
2626
- description: specifies the username of HMC that the password policy role is using.
2727

28-
- password_policy_hmc_password:
28+
- **password_policy_hmc_password**
2929

3030
- type: str
3131
- required: true
3232
- description: specifies the logged in user HMC password. For security purposes, it is highly recommended to store this sensitive information in an encrypted secret vault file.
3333

34-
- password_policy_name:
34+
- **password_policy_name**
3535

3636
- type: str
3737
- required: true
3838
- description: specifies the password policy name for which we want the role to execute.
3939

40-
- password_policy_configs:
40+
- **password_policy_configs**
4141

4242
- type: dict
4343
- required: true
@@ -55,7 +55,7 @@ Role Variables
5555
- min_lowercase_chars
5656
- min_special_chars
5757

58-
- password_policy_user_password:
58+
- **password_policy_user_password**
5959

6060
- type: dict
6161
- description: specifies the new password for the users in the HMC. For security purposes, it is highly recommended to store this sensitive information in an encrypted secret vault file. Required only when password_policy_password_change is true.
@@ -64,7 +64,7 @@ Role Variables
6464

6565
- passwd
6666

67-
- password_policy_password_change:
67+
- **password_policy_password_change**
6868

6969
- type: boolean
7070
- required: false
@@ -87,21 +87,21 @@ Example Playbook
8787
- ibm.power_hmc
8888
gather_facts: false
8989
vars_files:
90-
-
90+
- <secretvault_file_path>
9191
roles:
9292
- role: password_policy
9393
vars:
94-
password_policy_name:
94+
password_policy_name: <password_policy_name>
9595
password_policy_configs:
96-
min_pwage:
97-
pwage:
98-
min_length:
99-
hist_size:
100-
warn_pwage:
101-
min_digits:
102-
min_uppercase_chars:
103-
min_lowercase_chars:
104-
min_special_chars:
96+
min_pwage: <min_password_age>
97+
pwage: <password_age>
98+
min_length: <min_pass_length>
99+
hist_size: <history_size>
100+
warn_pwage: <warning_password_age>
101+
min_digits: <min_digits>
102+
min_uppercase_chars: <min_uppercase_chars>
103+
min_lowercase_chars: <min_lowercase_chars>
104+
min_special_chars: <min_special_chars>
105105

106106
License
107107
-------

0 commit comments

Comments
 (0)