Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 5, 2021
1 parent 08ee1c1 commit 1188e26
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 @@ -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
Expand Down Expand Up @@ -70,7 +70,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_attribute"></a> [attribute](#input\_attribute) | LDAP attibute to return | `string` | `"dn"` | no |
| <a name="input_attribute"></a> [attribute](#input\_attribute) | LDAP attribute to return | `string` | `"dn"` | no |
| <a name="input_filter"></a> [filter](#input\_filter) | LDAP search filter | `string` | n/a | yes |
| <a name="input_ldap_base_dn"></a> [ldap\_base\_dn](#input\_ldap\_base\_dn) | LDAP base DN for search | `string` | `"o=U.S. Census Bureau,c=US"` | no |
| <a name="input_ldap_uri"></a> [ldap\_uri](#input\_ldap\_uri) | LDAP URI {scheme}://{hostname}:{port} | `string` | `"ldaps://ldap.tco.census.gov"` | no |
Expand Down
2 changes: 1 addition & 1 deletion ldap-get-attribute/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ldap-get-attribute/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "filter" {
}

variable "attribute" {
description = "LDAP attibute to return"
description = "LDAP attribute to return"
type = string
default = "dn"
}
Expand Down

0 comments on commit 1188e26

Please sign in to comment.