Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed May 9, 2022
1 parent e30a884 commit 7510353
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions ldap-ou-create/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ module "ou" {
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | > 3.66.0 |
| <a name="requirement_external"></a> [external](#requirement\_external) | > 1.0 |
| <a name="requirement_ldap"></a> [ldap](#requirement\_ldap) | > 0.5.4 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.66.0 |
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 1.0 |
| <a name="requirement_ldap"></a> [ldap](#requirement\_ldap) | >= 0.5.4 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | > 3.66.0 |
| <a name="provider_ldap"></a> [ldap](#provider\_ldap) | > 0.5.4 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.66.0 |
| <a name="provider_ldap"></a> [ldap](#provider\_ldap) | >= 0.5.4 |
| <a name="provider_null"></a> [null](#provider\_null) | n/a |
| <a name="provider_template"></a> [template](#provider\_template) | n/a |

Expand Down
6 changes: 3 additions & 3 deletions ldap-ou-create/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "> 3.66.0"
version = ">= 3.66.0"
}
ldap = {
source = "trevex/ldap"
version = "> 0.5.4"
version = ">= 0.5.4"
}
external = {
source = "hashicorp/null"
version = "> 1.0"
version = ">= 1.0"
}
}
required_version = ">= 0.13"
Expand Down

0 comments on commit 7510353

Please sign in to comment.