Skip to content

Commit

Permalink
Merge pull request #143 from ansible-hmc-org/dev-collection
Browse files Browse the repository at this point in the history
correct roles readme document
  • Loading branch information
naveenkandakur authored Dec 18, 2024
2 parents bd0fd24 + 461f20d commit ec6d32c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions roles/password_policy/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@ None
Role Variables
--------------

- password_policy_hmc_username:
- **password_policy_hmc_username**

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

- password_policy_hmc_password:
- **password_policy_hmc_password**

- type: str
- required: true
- 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.

- password_policy_name:
- **password_policy_name**

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

- password_policy_configs:
- **password_policy_configs**

- type: dict
- required: true
Expand All @@ -55,7 +55,7 @@ Role Variables
- min_lowercase_chars
- min_special_chars

- password_policy_user_password:
- **password_policy_user_password**

- type: dict
- 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.
Expand All @@ -64,7 +64,7 @@ Role Variables

- passwd

- password_policy_password_change:
- **password_policy_password_change**

- type: boolean
- required: false
Expand All @@ -87,21 +87,21 @@ Example Playbook
- ibm.power_hmc
gather_facts: false
vars_files:
-
- <secretvault_file_path>
roles:
- role: password_policy
vars:
password_policy_name:
password_policy_name: <password_policy_name>
password_policy_configs:
min_pwage:
pwage:
min_length:
hist_size:
warn_pwage:
min_digits:
min_uppercase_chars:
min_lowercase_chars:
min_special_chars:
min_pwage: <min_password_age>
pwage: <password_age>
min_length: <min_pass_length>
hist_size: <history_size>
warn_pwage: <warning_password_age>
min_digits: <min_digits>
min_uppercase_chars: <min_uppercase_chars>
min_lowercase_chars: <min_lowercase_chars>
min_special_chars: <min_special_chars>

License
-------
Expand Down

0 comments on commit ec6d32c

Please sign in to comment.