Skip to content

Commit f4f72b5

Browse files
committed
fix: Pin AWS provider version to v3.x to avoid S3 issues with v4.x provider
1 parent 2354bea commit f4f72b5

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ Examples codified under the [`examples`](./examples) are intended to give users
6666
| Name | Version |
6767
|------|---------|
6868
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
69-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0 |
69+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |
7070

7171
## Providers
7272

7373
| Name | Version |
7474
|------|---------|
75-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0 |
75+
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 3.0 |
7676

7777
## Modules
7878

examples/complete/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ Note that this example may create resources which will incur monetary charges on
2424
| Name | Version |
2525
|------|---------|
2626
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
27-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0 |
27+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |
2828
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2929

3030
## Providers
3131

3232
| Name | Version |
3333
|------|---------|
34-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0 |
34+
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 3.0 |
3535
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3636

3737
## Modules

examples/complete/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 = ">= 3.0"
7+
version = "~> 3.0"
88
}
99
random = {
1010
source = "hashicorp/random"

examples/simple/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ Note that this example may create resources which will incur monetary charges on
2020
| Name | Version |
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
23-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0 |
23+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |
2424
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
30-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0 |
30+
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 3.0 |
3131
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3232

3333
## Modules

examples/simple/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 = ">= 3.0"
7+
version = "~> 3.0"
88
}
99
random = {
1010
source = "hashicorp/random"

modules/log_forwarder/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ module "datadog_log_forwarder" {
4242
| Name | Version |
4343
|------|---------|
4444
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
45-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0 |
45+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |
4646
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.0 |
4747

4848
## Providers
4949

5050
| Name | Version |
5151
|------|---------|
52-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0 |
52+
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 3.0 |
5353
| <a name="provider_null"></a> [null](#provider\_null) | >= 3.0 |
5454

5555
## Modules

modules/log_forwarder/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 = ">= 3.0"
7+
version = "~> 3.0"
88
}
99
null = {
1010
source = "hashicorp/null"

modules/rds_enhanced_monitoring_forwarder/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ module "datadog_rds_enhanced_monitoring_forwarder" {
3636
| Name | Version |
3737
|------|---------|
3838
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
39-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0 |
39+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |
4040

4141
## Providers
4242

4343
| Name | Version |
4444
|------|---------|
45-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0 |
45+
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 3.0 |
4646

4747
## Modules
4848

modules/rds_enhanced_monitoring_forwarder/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 = ">= 3.0"
7+
version = "~> 3.0"
88
}
99
}
1010
}

modules/vpc_flow_log_forwarder/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ module "datadog_vpc_flow_log_forwarder" {
3434
| Name | Version |
3535
|------|---------|
3636
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
37-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0 |
37+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |
3838

3939
## Providers
4040

4141
| Name | Version |
4242
|------|---------|
43-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0 |
43+
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 3.0 |
4444

4545
## Modules
4646

0 commit comments

Comments
 (0)