Skip to content

Commit 3c30413

Browse files
authored
fix: require AWS provider v4.2.0 (#270)
Updated the provider requiremenet to avoid the issue in AWS provider v4.1.0 that the validation fails for some AWS regions.
1 parent ab6f5ac commit 3c30413

File tree

31 files changed

+43
-43
lines changed

31 files changed

+43
-43
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@ This module is composed of several submodules and each of which can be used inde
111111
| Name | Version |
112112
|------|---------|
113113
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1.4 |
114-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.1.0 |
114+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.2.0 |
115115

116116
## Providers
117117

118118
| Name | Version |
119119
|------|---------|
120-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.1.0 |
120+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.2.0 |
121121

122122
## Inputs
123123

examples/external-bucket/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.1.0"
7+
version = ">= 4.2.0"
88
}
99
}
1010
}

examples/organization/master/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.1.0"
7+
version = ">= 4.2.0"
88
}
99
}
1010
}

examples/organization/member/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.1.0"
7+
version = ">= 4.2.0"
88
}
99
}
1010
}

examples/select-region/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.1.0"
7+
version = ">= 4.2.0"
88
}
99
}
1010
}

examples/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.1.0"
7+
version = ">= 4.2.0"
88
}
99
}
1010
}

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.1.0"
7+
version = ">= 4.2.0"
88

99
# A provider alias should be passed for each AWS region.
1010
# Reference: https://docs.aws.amazon.com/general/latest/gr/rande.html

modules/alarm-baseline/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Set up CloudWatch alarms to notify you when critical changes happen in your AWS
88
| Name | Version |
99
|------|---------|
1010
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1.4 |
11-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.1.0 |
11+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.2.0 |
1212

1313
## Providers
1414

1515
| Name | Version |
1616
|------|---------|
17-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.1.0 |
17+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.2.0 |
1818

1919
## Inputs
2020

modules/alarm-baseline/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.1.0"
7+
version = ">= 4.2.0"
88
}
99
}
1010
}

modules/analyzer-baseline/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
| Name | Version |
1111
|------|---------|
1212
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1.4 |
13-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.1.0 |
13+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.2.0 |
1414

1515
## Providers
1616

1717
| Name | Version |
1818
|------|---------|
19-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.1.0 |
19+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.2.0 |
2020

2121
## Inputs
2222

0 commit comments

Comments
 (0)