Skip to content

Commit d4b55a8

Browse files
authored
feat!: Updated AWS provider to version 4.8 (#296)
This is the correction after #291 BREAKING CHANGES: - Yes
1 parent f191bae commit d4b55a8

File tree

30 files changed

+195
-117
lines changed

30 files changed

+195
-117
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ Q4: What does this error mean - `"We currently do not support adding policies fo
602602
| Name | Version |
603603
|------|---------|
604604
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
605-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.8.0 |
605+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.8 |
606606
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 1.0 |
607607
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.0 |
608608
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 2.0 |
@@ -611,7 +611,7 @@ Q4: What does this error mean - `"We currently do not support adding policies fo
611611

612612
| Name | Version |
613613
|------|---------|
614-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.8.0 |
614+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.8 |
615615
| <a name="provider_external"></a> [external](#provider\_external) | >= 1.0 |
616616
| <a name="provider_local"></a> [local](#provider\_local) | >= 1.0 |
617617
| <a name="provider_null"></a> [null](#provider\_null) | >= 2.0 |
@@ -710,7 +710,7 @@ No modules.
710710
| <a name="input_docker_pip_cache"></a> [docker\_pip\_cache](#input\_docker\_pip\_cache) | Whether to mount a shared pip cache folder into docker environment or not | `any` | `null` | no |
711711
| <a name="input_docker_with_ssh_agent"></a> [docker\_with\_ssh\_agent](#input\_docker\_with\_ssh\_agent) | Whether to pass SSH\_AUTH\_SOCK into docker environment or not | `bool` | `false` | no |
712712
| <a name="input_environment_variables"></a> [environment\_variables](#input\_environment\_variables) | A map that defines environment variables for the Lambda Function. | `map(string)` | `{}` | no |
713-
| <a name="input_ephemeral_storage_size"></a> [ephemeral\_storage\_size](#input\_ephemeral\_storage\_size) | Amount of ephemeral storage size (`/tmp`) in MB your Lambda Function can use at runtime. Valid value between 512 MB to 10,240 MB (10 GB). | `number` | `512` | no |
713+
| <a name="input_ephemeral_storage_size"></a> [ephemeral\_storage\_size](#input\_ephemeral\_storage\_size) | Amount of ephemeral storage (/tmp) in MB your Lambda Function can use at runtime. Valid value between 512 MB to 10,240 MB (10 GB). | `number` | `512` | no |
714714
| <a name="input_event_source_mapping"></a> [event\_source\_mapping](#input\_event\_source\_mapping) | Map of event source mapping | `any` | `{}` | no |
715715
| <a name="input_file_system_arn"></a> [file\_system\_arn](#input\_file\_system\_arn) | The Amazon Resource Name (ARN) of the Amazon EFS Access Point that provides access to the file system. | `string` | `null` | no |
716716
| <a name="input_file_system_local_mount_path"></a> [file\_system\_local\_mount\_path](#input\_file\_system\_local\_mount\_path) | The path where the function can access the file system, starting with /mnt/. | `string` | `null` | no |

examples/alias/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Note that this example may create resources which cost money. Run `terraform des
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
2323
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.19 |
24-
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2 |
24+
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
30-
| <a name="provider_random"></a> [random](#provider\_random) | >= 2 |
30+
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3131

3232
## Modules
3333

examples/alias/versions.tf

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ terraform {
22
required_version = ">= 0.13.1"
33

44
required_providers {
5-
aws = ">= 3.19"
6-
random = ">= 2"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.19"
8+
}
9+
random = {
10+
source = "hashicorp/random"
11+
version = ">= 2.0"
12+
}
713
}
814
}

examples/async/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ Note that this example may create resources which cost money. Run `terraform des
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
2323
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.61 |
24-
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2 |
24+
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
3030
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.61 |
31-
| <a name="provider_random"></a> [random](#provider\_random) | >= 2 |
31+
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3232

3333
## Modules
3434

examples/async/versions.tf

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ terraform {
22
required_version = ">= 0.13.1"
33

44
required_providers {
5-
aws = ">= 3.61"
6-
random = ">= 2"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.61"
8+
}
9+
random = {
10+
source = "hashicorp/random"
11+
version = ">= 2.0"
12+
}
713
}
814
}

examples/build-package/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Note that this example may create resources which cost money. Run `terraform des
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
2323
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.19 |
24-
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2 |
24+
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
30-
| <a name="provider_random"></a> [random](#provider\_random) | >= 2 |
30+
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3131

3232
## Modules
3333

examples/build-package/versions.tf

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ terraform {
22
required_version = ">= 0.13.1"
33

44
required_providers {
5-
aws = ">= 3.19"
6-
random = ">= 2"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.19"
8+
}
9+
random = {
10+
source = "hashicorp/random"
11+
version = ">= 2.0"
12+
}
713
}
814
}

examples/complete/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ Note that this example may create resources which cost money. Run `terraform des
2121
| Name | Version |
2222
|------|---------|
2323
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
24-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 2.67 |
25-
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2 |
24+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.8 |
25+
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2626

2727
## Providers
2828

2929
| Name | Version |
3030
|------|---------|
31-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 2.67 |
32-
| <a name="provider_random"></a> [random](#provider\_random) | >= 2 |
31+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.8 |
32+
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3333

3434
## Modules
3535

examples/complete/versions.tf

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ terraform {
22
required_version = ">= 0.13.1"
33

44
required_providers {
5-
aws = ">= 4.8.0"
6-
random = ">= 2"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 4.8"
8+
}
9+
random = {
10+
source = "hashicorp/random"
11+
version = ">= 2.0"
12+
}
713
}
814
}

examples/container-image/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Note that this example may create resources which cost money. Run `terraform des
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
2323
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.19 |
24-
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2 |
24+
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
30-
| <a name="provider_random"></a> [random](#provider\_random) | >= 2 |
30+
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3131

3232
## Modules
3333

0 commit comments

Comments
 (0)