Skip to content

Commit

Permalink
prep for tf-0.13+
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 6, 2022
1 parent 42ca199 commit 94fa603
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@
* 1.3.2 -- 20211222
- output instance_profile_arn

* 1.3.3 -- 20220106
- add version number max for external provier to 1.2 (2.x not compatible with tf 0.12)

## version 2.x

branch: compat-tf-0.13
Expand All @@ -57,3 +60,6 @@ tag: 2.0.1

* 2.0.2 -- 20211222
- output instance_profile_arn

* 2.1.0 -- 20220106
- prep for tf 0.13+
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,15 @@ module "myrole3" {
|------|---------|
| <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) | >= 2.2.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_external"></a> [external](#provider\_external) | n/a |
| <a name="provider_external"></a> [external](#provider\_external) | >= 2.2.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
3 changes: 2 additions & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
locals {
_module_version = "2.0.2"
# _module_version = "1.3.3"
_module_version = "2.1.0"
}
10 changes: 10 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# tf 0.13+
terraform {
required_providers {
aws = {
Expand All @@ -8,6 +9,15 @@ terraform {
source = "trevex/ldap"
version = ">= 0.5.4"
}
external = {
source = "hashicorp/external"
version = ">= 2.2.0"
}
}
required_version = ">= 0.13"
}

# tf 0.12
# provider "external" {
# version = "~> 1.2"
# }

0 comments on commit 94fa603

Please sign in to comment.