Skip to content

Commit 37d5168

Browse files
authored
docs: Update version constraints (#162)
1 parent fc06fb0 commit 37d5168

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
```hcl
1313
module "iam_account" {
1414
source = "terraform-aws-modules/iam/aws//modules/iam-account"
15-
version = "~> 3.0"
15+
version = "~> 4.3"
1616
1717
account_alias = "awesome-company"
1818
@@ -26,7 +26,7 @@ module "iam_account" {
2626
```hcl
2727
module "iam_assumable_role" {
2828
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
29-
version = "~> 3.0"
29+
version = "~> 4.3"
3030
3131
trusted_role_arns = [
3232
"arn:aws:iam::307990089504:root",
@@ -51,7 +51,7 @@ module "iam_assumable_role" {
5151
```hcl
5252
module "iam_assumable_role_with_oidc" {
5353
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
54-
version = "~> 3.0"
54+
version = "~> 4.3"
5555
5656
create_role = true
5757
@@ -75,7 +75,7 @@ module "iam_assumable_role_with_oidc" {
7575
```hcl
7676
module "iam_assumable_role_with_saml" {
7777
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-saml"
78-
version = "~> 3.0"
78+
version = "~> 4.3"
7979
8080
create_role = true
8181
@@ -99,7 +99,7 @@ module "iam_assumable_role_with_saml" {
9999
```hcl
100100
module "iam_assumable_roles" {
101101
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-roles"
102-
version = "~> 3.0"
102+
version = "~> 4.3"
103103
104104
trusted_role_arns = [
105105
"arn:aws:iam::307990089504:root",
@@ -121,7 +121,7 @@ module "iam_assumable_roles" {
121121
```hcl
122122
module "iam_assumable_roles_with_saml" {
123123
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-roles-with-saml"
124-
version = "~> 3.0"
124+
version = "~> 4.3"
125125
126126
create_admin_role = true
127127
@@ -139,7 +139,7 @@ module "iam_assumable_roles_with_saml" {
139139
```hcl
140140
module "iam_user" {
141141
source = "terraform-aws-modules/iam/aws//modules/iam-user"
142-
version = "~> 3.0"
142+
version = "~> 4.3"
143143
144144
name = "vasya.pupkin"
145145
force_destroy = true
@@ -155,7 +155,7 @@ module "iam_user" {
155155
```hcl
156156
module "iam_policy" {
157157
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
158-
version = "~> 3.0"
158+
version = "~> 4.3"
159159
160160
name = "example"
161161
path = "/"
@@ -183,7 +183,7 @@ EOF
183183
```hcl
184184
module "iam_group_with_assumable_roles_policy" {
185185
source = "terraform-aws-modules/iam/aws//modules/iam-group-with-assumable-roles-policy"
186-
version = "~> 3.0"
186+
version = "~> 4.3"
187187
188188
name = "production-readonly"
189189
@@ -203,7 +203,7 @@ module "iam_group_with_assumable_roles_policy" {
203203
```hcl
204204
module "iam_group_with_policies" {
205205
source = "terraform-aws-modules/iam/aws//modules/iam-group-with-policies"
206-
version = "~> 3.0"
206+
version = "~> 4.3"
207207
208208
name = "superadmins"
209209
@@ -285,4 +285,4 @@ Module is maintained by [Anton Babenko](https://github.com/antonbabenko) with he
285285

286286
## License
287287

288-
Apache 2 Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-aws-iam/tree/master/LICENSE) for full details.
288+
Apache 2 Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-aws-iam/tree/master/LICENSE) for full details.

0 commit comments

Comments
 (0)