Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 5, 2021
1 parent 9c2b900 commit 08ee1c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ldap-get-attribute/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ attribute, the DN to attibute value will not match. That is, it returns only a
the attributes for the objects which have them in no particular order.

# Usage
Here is a simple example to get the email address of use `badra001`.
Here is a simple example to get the email address of user `badra001`.

```hcl
module "user_badra001" {
Expand Down Expand Up @@ -79,4 +79,4 @@ No modules.

| Name | Description |
|------|-------------|
| <a name="output_search_result"></a> [search\_result](#output\_search\_result) | Object from ldap search result |
| <a name="output_search_result"></a> [search\_result](#output\_search\_result) | Object from ldap search result showing count, status, cn, dn, attribute and attribute\_value |
2 changes: 1 addition & 1 deletion ldap-get-attribute/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* the attributes for the objects which have them in no particular order.
*
* # Usage
* Here is a simple example to get the email address of use `badra001`.
* Here is a simple example to get the email address of user `badra001`.
*
* ```hcl
* module "user_badra001" {
Expand Down
2 changes: 1 addition & 1 deletion ldap-get-attribute/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
output "search_result" {
description = "Object from ldap search result"
description = "Object from ldap search result showing count, status, cn, dn, attribute and attribute_value"
value = {
"count" = data.external.ldap_user.result.count
"status" = data.external.ldap_user.result.status
Expand Down

0 comments on commit 08ee1c1

Please sign in to comment.