From 1188e26b99feb556559fe4927c12b6c2b4b58eae Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 5 Apr 2021 11:14:46 -0400 Subject: [PATCH] fix --- ldap-get-attribute/README.md | 4 ++-- ldap-get-attribute/main.tf | 2 +- ldap-get-attribute/variables.tf | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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" }