Skip to content

Commit

Permalink
ipatrust: Updated ipatrust documentation.
Browse files Browse the repository at this point in the history
This patch updates the ipatrust documentation about the 'trust_type'
parameter, and changes one password to be similar to the standard
passwords used in other modules.
  • Loading branch information
rjeffman committed Apr 26, 2022
1 parent 423a6b0 commit 6124dc0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README-trust.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ Variable | Description | Required
`password` | Active Directory domain administrator's password string. | no
`server` | Domain controller for the Active Directory domain string. | no
`trust_secret` | Shared secret for the trust string. | no
`trust_type` | Trust type. Currently, only 'ad' for Active Directory is supported. | no
`base_id` | First posix id for the trusted domain integer. | no
`range_size` | Size of the ID range reserved for the trusted domain integer. | no
`range_type` | Type of trusted domain ID range, It can be one of `ipa-ad-trust` or `ipa-ad-trust-posix`and defaults to `ipa-ad-trust`. | no
Expand Down
5 changes: 3 additions & 2 deletions plugins/modules/ipatrust.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
description:
- Trust type (ad for Active Directory, default)
default: ad
required: true
required: false
choices: ["ad"]
admin:
description:
- Active Directory domain administrator
Expand Down Expand Up @@ -103,7 +104,7 @@
realm: ad.example.test
trust_type: ad
admin: Administrator
password: Welcome2020!
password: SomeW1Npassword
state: present
# delete ad-trust
Expand Down

0 comments on commit 6124dc0

Please sign in to comment.