Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Sep 8, 2023
1 parent 25b4908 commit ca9e44a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions group-assignment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
| <a name="requirement_ldap"></a> [ldap](#requirement\_ldap) | >= 0.5.4 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
| <a name="provider_ldap"></a> [ldap](#provider\_ldap) | n/a |
| <a name="provider_ldap"></a> [ldap](#provider\_ldap) | >= 0.5.4 |

## Modules

Expand All @@ -29,7 +30,7 @@ No modules.
| [aws_organizations_organizational_unit_descendant_accounts.accounts](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/organizations_organizational_unit_descendant_accounts) | data source |
| [aws_organizations_organizational_unit_descendant_accounts.ou](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/organizations_organizational_unit_descendant_accounts) | data source |
| [aws_region.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/region) | data source |
| [ldap_object.users](https://registry.terraform.io/providers/hashicorp/ldap/latest/docs/data-sources/object) | data source |
| [ldap_object.users](https://registry.terraform.io/providers/trevex/ldap/latest/docs/data-sources/object) | data source |

## Inputs

Expand All @@ -43,7 +44,7 @@ No modules.
| <a name="input_org_account_ids"></a> [org\_account\_ids](#input\_org\_account\_ids) | List of AWS Account ID to which to associate with this group | `list(string)` | `[]` | no |
| <a name="input_org_account_names"></a> [org\_account\_names](#input\_org\_account\_names) | List of AWS Account aliases to which to associate with this group (note it use the commercial side alias for GovCloud) | `list(string)` | `[]` | no |
| <a name="input_org_all"></a> [org\_all](#input\_org\_all) | Flag indicating to associate this group to all ACTIVE accounts in the organization | `bool` | `false` | no |
| <a name="input_organizational_unit_hierarchy"></a> [organizational\_unit\_hierarchy](#input\_organizational\_unit\_hierarchy) | n/a | `map()` | `{}` | no |
| <a name="input_organizational_unit_hierarchy"></a> [organizational\_unit\_hierarchy](#input\_organizational\_unit\_hierarchy) | n/a | `map(any)` | `{}` | no |
| <a name="input_organizational_unit_ids"></a> [organizational\_unit\_ids](#input\_organizational\_unit\_ids) | List of AWS Organizational Unit names to assocate with this group | `list(string)` | `[]` | no |
| <a name="input_organizational_unit_names"></a> [organizational\_unit\_names](#input\_organizational\_unit\_names) | List of AWS Organizational Unit names to assocate with this group | `list(string)` | `[]` | no |
| <a name="input_override_prefixes"></a> [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component. This should be used primarily for common infrastructure things | `map(string)` | `{}` | no |
Expand Down
2 changes: 1 addition & 1 deletion group-assignment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ variable "organizational_unit_ids" {

variable "organizational_unit_hierarchy" {
descripton = "Map from organization setup with OU => object() to obtain OU IDs"
type = map()
type = map(any)
default = {}
}

Expand Down
10 changes: 5 additions & 5 deletions group-assignment/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ terraform {
source = "hashicorp/aws"
version = ">= 5.0"
}
}
ldap = {
source = "trevex/ldap"
version = ">= 0.5.4"
# configuration_aliases = [ldap.something]
ldap = {
source = "trevex/ldap"
version = ">= 0.5.4"
# configuration_aliases = [ldap.something]
}
}
}

0 comments on commit ca9e44a

Please sign in to comment.