-
Notifications
You must be signed in to change notification settings - Fork 18
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 #40 from Ouest-France/fixDoc
Fix docs
- Loading branch information
Showing
5 changed files
with
49 additions
and
109 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,37 +1,24 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "ldap_group Data Source - terraform-provider-ldap" | ||
subcategory: "" | ||
description: |- | ||
ldap_group is a data source for managing an LDAP group. | ||
--- | ||
|
||
# ldap_group (Data Source) | ||
# ldap_group | ||
|
||
`ldap_group` is a data source for managing an LDAP group. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
```hcl | ||
data "ldap_group" "group" { | ||
ou = "OU=MyOU,DC=domain,DC=tld" | ||
name = "MyGroup" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) LDAP group name. | ||
- **ou** (String) OU where LDAP group will be search. | ||
|
||
### Read-Only | ||
## Argument Reference | ||
|
||
- **description** (String) Description attribute for the LDAP | ||
- **group_type** (String) Type of the group | ||
- **id** (String) The DN of the LDAP group. | ||
- **members** (Set of String) LDAP group members. | ||
* `name` - (Required) LDAP group name. | ||
* `ou` - (Required) OU where LDAP group will be search. | ||
|
||
## Attribute Reference | ||
|
||
* `description` - Description attribute for the LDAP | ||
* `group_type` - Type of the group | ||
* `id` - The DN of the LDAP group. | ||
* `members` - LDAP group members. |
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 |
---|---|---|
@@ -1,40 +1,24 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "ldap_user Data Source - terraform-provider-ldap" | ||
subcategory: "" | ||
description: |- | ||
ldap_user is a data source for retrieving an LDAP user. | ||
--- | ||
|
||
# ldap_user (Data Source) | ||
# ldap_user | ||
|
||
`ldap_user` is a data source for retrieving an LDAP user. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
```hcl | ||
data "ldap_user" "user" { | ||
ou = "OU=MyOU,DC=domain,DC=tld" | ||
name = "MyUser" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **ou** (String) OU where LDAP user will be search. | ||
|
||
### Optional | ||
|
||
- **description** (String) Description attribute for the LDAP user. | ||
- **name** (String) The name of the LDAP user. | ||
- **sam_account_name** (String) The sAMAccountName of the LDAP user. | ||
- **user_principal_name** (String) The userPrincipalName of the LDAP user | ||
|
||
### Read-Only | ||
## Argument Reference | ||
|
||
- **id** (String) The DN of the LDAP user. | ||
* `ou` - (Required) OU where LDAP user will be search. | ||
* `name` - (Required) Name of the LDAP user. | ||
* `sam_account_name` - (Optional) sAMAccountName of the LDAP user. | ||
* `user_principal_name` - (Optional) UPN of the LDAP user. | ||
|
||
## Attribute Reference | ||
|
||
* `id` - The DN of the LDAP user. | ||
* `description` - Description attribute for the LDAP user. |
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
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
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