Skip to content

Commit

Permalink
1.3.4: fix to removeve ldap provider in requirements for tf-0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 7, 2022
1 parent 3b0fa4c commit be33406
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
* 1.3.3 -- 20220106
- add version number max for external provier to 1.2 (2.x not compatible with tf 0.12)

* 1.3.4 -- 20220107
- fix to remove ldap provider for tf-0.12

## version 2.x

branch: compat-tf-0.13
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,14 @@ module "myrole3" {
|------|---------|
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.66.0 |
| <a name="requirement_external"></a> [external](#requirement\_external) | ~> 1.1 |
| <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_external"></a> [external](#provider\_external) | ~> 1.1 |
| <a name="provider_ldap"></a> [ldap](#provider\_ldap) | >= 0.5.4 |
| <a name="provider_ldap"></a> [ldap](#provider\_ldap) | n/a |
| <a name="provider_null"></a> [null](#provider\_null) | n/a |
| <a name="provider_template"></a> [template](#provider\_template) | n/a |

Expand All @@ -127,7 +126,7 @@ No modules.
| [aws_iam_instance_profile.role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_instance_profile) | resource |
| [aws_iam_role.role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) | resource |
| [aws_iam_role_policy_attachment.role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) | resource |
| [ldap_object.role](https://registry.terraform.io/providers/trevex/ldap/latest/docs/resources/object) | resource |
| [ldap_object.role](https://registry.terraform.io/providers/hashicorp/ldap/latest/docs/resources/object) | resource |
| [null_resource.role_ldif](https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource) | resource |
| [aws_arn.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/arn) | data source |
| [aws_caller_identity.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity) | data source |
Expand Down
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
locals {
_module_version = "1.3.3"
_module_version = "1.3.4"
# _module_version = "2.1.0"
}
8 changes: 4 additions & 4 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ terraform {
source = "hashicorp/aws"
version = ">= 3.66.0"
}
ldap = {
source = "trevex/ldap"
version = ">= 0.5.4"
}
# ldap = {
# source = "trevex/ldap"
# version = ">= 0.5.4"
# }
external = {
source = "hashicorp/external"
# tf 0.13
Expand Down

0 comments on commit be33406

Please sign in to comment.