Skip to content

Commit 5bbb6f7

Browse files
committed
Update AWS privider
1 parent 6945e00 commit 5bbb6f7

File tree

5 files changed

+60
-19
lines changed

5 files changed

+60
-19
lines changed

.terraform.lock.hcl

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,19 @@ In order to run all checks at any point run the following command:
3535
| Name | Version |
3636
|------|---------|
3737
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
38+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.74 |
3839

3940
## Providers
4041

4142
| Name | Version |
4243
|------|---------|
43-
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
44+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.0.0 |
4445

4546
## Modules
4647

4748
| Name | Source | Version |
4849
|------|--------|---------|
49-
| <a name="module_container_definition"></a> [container\_definition](#module\_container\_definition) | cloudposse/ecs-container-definition/aws | 0.53.0 |
50+
| <a name="module_container_definition"></a> [container\_definition](#module\_container\_definition) | cloudposse/ecs-container-definition/aws | 0.58.1 |
5051

5152
## Resources
5253

examples/test/.terraform.lock.hcl

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/test/mock_provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
aws = {
55
source = "hashicorp/aws"
6-
version = "3.74.1"
6+
version = ">= 3.74"
77
}
88
}
99
}
@@ -13,7 +13,7 @@ provider "aws" {
1313
skip_credentials_validation = true
1414
skip_requesting_account_id = true
1515
skip_metadata_api_check = true
16-
s3_force_path_style = true
16+
s3_use_path_style = true
1717
access_key = "mock_access_key"
1818
secret_key = "mock_secret_key"
1919
}

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
aws = {
55
source = "hashicorp/aws"
6-
version = "3.74.1"
6+
version = ">= 3.74"
77
}
88
}
99
}

0 commit comments

Comments
 (0)