-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1441 from SEKOIA-IO/update-automation-library-doc…
…umentation Refresh automation library documentation
- Loading branch information
Showing
3 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
_shared_content/automate/library/microsoft-active-directory.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Microsoft Active Directory | ||
|
||
![Microsoft Active Directory](/assets/playbooks/library/microsoft-active-directory.png){ align=right width=150 } | ||
|
||
Microsoft Active Directory (Microsoft AD), is a directory service developed by Microsoft for Windows domain networks. It is a centralized system that stores information about networked resources and makes these resources easily accessible to users and administrators. Active Directory provides services for authentication and authorization, organizing and managing resources, such as users, computers, and devices, in a networked environment. | ||
|
||
## Configuration | ||
|
||
| Name | Type | Description | | ||
| --------- | ------- | --------------------------- | | ||
| `servername` | `string` | IP or name of your host | | ||
| `admin_username` | `string` | The username of the account that have necessary permisions to change passwords (e.g [email protected] ) | | ||
| `admin_password` | `string` | The dedicated password of the account | | ||
|
||
## Actions | ||
|
||
### Disable User | ||
|
||
Disable a Microsoft Active Directory user. | ||
|
||
**Arguments** | ||
|
||
| Name | Type | Description | | ||
| --------- | ------- | --------------------------- | | ||
| `username` | `string` | Target user | | ||
| `basedn` | `string` | The starting point an LDAP server uses when searching for users authentication within your Directory. (e.g DC=example-domain,DC=com) | | ||
|
||
### Enable User | ||
|
||
Enable a Microsoft Active Directory user. | ||
|
||
**Arguments** | ||
|
||
| Name | Type | Description | | ||
| --------- | ------- | --------------------------- | | ||
| `username` | `string` | Target user | | ||
| `basedn` | `string` | he starting point an LDAP server uses when searching for users authentication within your Directory. (e.g DC=example-domain,DC=com) | | ||
|
||
### Reset User Password | ||
|
||
Reset a user's password. You will need a strong password for that otherwise enable the password policy | ||
|
||
**Arguments** | ||
|
||
| Name | Type | Description | | ||
| --------- | ------- | --------------------------- | | ||
| `username` | `string` | Target user | | ||
| `basedn` | `string` | The starting point an LDAP server uses when searching for users authentication within your Directory. (e.g DC=example-domain,DC=com) | | ||
| `new_password` | `string` | New password, required to reset the old one of course. | | ||
|
||
|
||
## Extra | ||
|
||
Module **`Microsoft Active Directory` v1.0.0** |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters