Skip to content

Commit 70888f7

Browse files
authored
feat: Support for Terraform v0.13 and AWS provider v3 (#87)
1 parent d22f0c8 commit 70888f7

File tree

18 files changed

+45
-45
lines changed

18 files changed

+45
-45
lines changed

modules/iam-account/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Import successful!
2626

2727
| Name | Version |
2828
|------|---------|
29-
| terraform | ~> 0.12.6 |
30-
| aws | ~> 2.23 |
29+
| terraform | >= 0.12.6, < 0.14 |
30+
| aws | >= 2.23, < 4.0 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| aws | ~> 2.23 |
36+
| aws | >= 2.23, < 4.0 |
3737

3838
## Inputs
3939

modules/iam-account/versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-assumable-role-with-oidc/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ This module supports IAM Roles for kubernetes service accounts as described in t
1111

1212
| Name | Version |
1313
|------|---------|
14-
| terraform | ~> 0.12.6 |
15-
| aws | ~> 2.23 |
14+
| terraform | >= 0.12.6, < 0.14 |
15+
| aws | >= 2.23, < 4.0 |
1616

1717
## Providers
1818

1919
| Name | Version |
2020
|------|---------|
21-
| aws | ~> 2.23 |
21+
| aws | >= 2.23, < 4.0 |
2222

2323
## Inputs
2424

Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-assumable-role/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Trusted resources can be any [IAM ARNs](https://docs.aws.amazon.com/IAM/latest/U
99

1010
| Name | Version |
1111
|------|---------|
12-
| terraform | ~> 0.12.6 |
13-
| aws | ~> 2.23 |
12+
| terraform | >= 0.12.6, < 0.14 |
13+
| aws | >= 2.23, < 4.0 |
1414

1515
## Providers
1616

1717
| Name | Version |
1818
|------|---------|
19-
| aws | ~> 2.23 |
19+
| aws | >= 2.23, < 4.0 |
2020

2121
## Inputs
2222

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-assumable-roles-with-saml/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ Creates predefined IAM roles (admin, poweruser and readonly) which can be assume
1111

1212
| Name | Version |
1313
|------|---------|
14-
| terraform | ~> 0.12.6 |
15-
| aws | ~> 2.23 |
14+
| terraform | >= 0.12.6, < 0.14 |
15+
| aws | >= 2.23, < 4.0 |
1616

1717
## Providers
1818

1919
| Name | Version |
2020
|------|---------|
21-
| aws | ~> 2.23 |
21+
| aws | >= 2.23, < 4.0 |
2222

2323
## Inputs
2424

Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-assumable-roles/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Trusted resources can be any [IAM ARNs](https://docs.aws.amazon.com/IAM/latest/U
99

1010
| Name | Version |
1111
|------|---------|
12-
| terraform | ~> 0.12.6 |
13-
| aws | ~> 2.23 |
12+
| terraform | >= 0.12.6, < 0.14 |
13+
| aws | >= 2.23, < 4.0 |
1414

1515
## Providers
1616

1717
| Name | Version |
1818
|------|---------|
19-
| aws | ~> 2.23 |
19+
| aws | >= 2.23, < 4.0 |
2020

2121
## Inputs
2222

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-group-with-assumable-roles-policy/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Creates IAM group with users who are allowed to assume IAM roles. This is typica
77

88
| Name | Version |
99
|------|---------|
10-
| terraform | ~> 0.12.6 |
11-
| aws | ~> 2.23 |
10+
| terraform | >= 0.12.6, < 0.14 |
11+
| aws | >= 2.23, < 4.0 |
1212

1313
## Providers
1414

1515
| Name | Version |
1616
|------|---------|
17-
| aws | ~> 2.23 |
17+
| aws | >= 2.23, < 4.0 |
1818

1919
## Inputs
2020

Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-group-with-policies/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Creates IAM group with specified IAM policies, and add users into a group.
77

88
| Name | Version |
99
|------|---------|
10-
| terraform | ~> 0.12.6 |
11-
| aws | ~> 2.23 |
10+
| terraform | >= 0.12.6, < 0.14 |
11+
| aws | >= 2.23, < 4.0 |
1212

1313
## Providers
1414

1515
| Name | Version |
1616
|------|---------|
17-
| aws | ~> 2.23 |
17+
| aws | >= 2.23, < 4.0 |
1818

1919
## Inputs
2020

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-policy/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Creates IAM policy.
77

88
| Name | Version |
99
|------|---------|
10-
| terraform | ~> 0.12.6 |
11-
| aws | ~> 2.23 |
10+
| terraform | >= 0.12.6, < 0.14 |
11+
| aws | >= 2.23, < 4.0 |
1212

1313
## Providers
1414

1515
| Name | Version |
1616
|------|---------|
17-
| aws | ~> 2.23 |
17+
| aws | >= 2.23, < 4.0 |
1818

1919
## Inputs
2020

modules/iam-policy/versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.23"
5+
aws = ">= 2.23, < 4.0"
66
}
77
}

modules/iam-user/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ This module outputs commands and PGP messages which can be decrypted either usin
2323

2424
| Name | Version |
2525
|------|---------|
26-
| terraform | ~> 0.12.6 |
27-
| aws | ~> 2.50 |
26+
| terraform | >= 0.12.6, < 0.14 |
27+
| aws | >= 2.50, < 4.0 |
2828

2929
## Providers
3030

3131
| Name | Version |
3232
|------|---------|
33-
| aws | ~> 2.50 |
33+
| aws | >= 2.50, < 4.0 |
3434

3535
## Inputs
3636

modules/iam-user/versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = "~> 0.12.6"
2+
required_version = ">= 0.12.6, < 0.14"
33

44
required_providers {
5-
aws = "~> 2.50"
5+
aws = ">= 2.50, < 4.0"
66
}
77
}

0 commit comments

Comments
 (0)