diff --git a/ldap-get-attribute/README.md b/ldap-get-attribute/README.md
index 84437b3..55c1c6e 100644
--- a/ldap-get-attribute/README.md
+++ b/ldap-get-attribute/README.md
@@ -6,7 +6,7 @@ DN and values are returned in a list. This is intended to search for only a sin
which may be multi-value. It also returns the DN and CN.
For a query that returns multiple entries, where those entries do all not possess the same
-attribute, the DN to attibute value will not match. That is, it returns only a list of
+attribute, the DN to attribute value will not match. That is, it returns only a list of
the attributes for the objects which have them in no particular order.
# Usage
@@ -70,7 +70,7 @@ No modules.
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [attribute](#input\_attribute) | LDAP attibute to return | `string` | `"dn"` | no |
+| [attribute](#input\_attribute) | LDAP attribute to return | `string` | `"dn"` | no |
| [filter](#input\_filter) | LDAP search filter | `string` | n/a | yes |
| [ldap\_base\_dn](#input\_ldap\_base\_dn) | LDAP base DN for search | `string` | `"o=U.S. Census Bureau,c=US"` | no |
| [ldap\_uri](#input\_ldap\_uri) | LDAP URI {scheme}://{hostname}:{port} | `string` | `"ldaps://ldap.tco.census.gov"` | no |
diff --git a/ldap-get-attribute/main.tf b/ldap-get-attribute/main.tf
index 034acca..9a3b8fc 100644
--- a/ldap-get-attribute/main.tf
+++ b/ldap-get-attribute/main.tf
@@ -7,7 +7,7 @@
* which may be multi-value. It also returns the DN and CN.
*
* For a query that returns multiple entries, where those entries do all not possess the same
-* attribute, the DN to attibute value will not match. That is, it returns only a list of
+* attribute, the DN to attribute value will not match. That is, it returns only a list of
* the attributes for the objects which have them in no particular order.
*
* # Usage
diff --git a/ldap-get-attribute/variables.tf b/ldap-get-attribute/variables.tf
index 0525f38..ec67586 100644
--- a/ldap-get-attribute/variables.tf
+++ b/ldap-get-attribute/variables.tf
@@ -4,7 +4,7 @@ variable "filter" {
}
variable "attribute" {
- description = "LDAP attibute to return"
+ description = "LDAP attribute to return"
type = string
default = "dn"
}