diff --git a/ldap-get-attribute/README.md b/ldap-get-attribute/README.md
index 8ac79f4..84437b3 100644
--- a/ldap-get-attribute/README.md
+++ b/ldap-get-attribute/README.md
@@ -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" {
@@ -79,4 +79,4 @@ No modules.
| Name | Description |
|------|-------------|
-| [search\_result](#output\_search\_result) | Object from ldap search result |
+| [search\_result](#output\_search\_result) | Object from ldap search result showing count, status, cn, dn, attribute and attribute\_value |
diff --git a/ldap-get-attribute/main.tf b/ldap-get-attribute/main.tf
index c46c696..034acca 100644
--- a/ldap-get-attribute/main.tf
+++ b/ldap-get-attribute/main.tf
@@ -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" {
diff --git a/ldap-get-attribute/outputs.tf b/ldap-get-attribute/outputs.tf
index c4e5394..efaed0b 100644
--- a/ldap-get-attribute/outputs.tf
+++ b/ldap-get-attribute/outputs.tf
@@ -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