Skip to content

Commit f602573

Browse files
authored
Post-review updates (#2)
* updates AWS Provider from `4.2.0` to `4.3.0` * adds `http` provider dependency
1 parent cc8acb5 commit f602573

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

examples/basic/.terraform.lock.hcl

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/basic/terraform.tf

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# see https://registry.terraform.io/providers/hashicorp/aws/latest
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.2.0, < 4.3.0"
7+
version = "4.3.0"
88

99
# see https://www.terraform.io/language/modules/develop/providers#provider-aliases-within-modules
1010
configuration_aliases = [
@@ -16,7 +16,13 @@ terraform {
1616
# see https://registry.terraform.io/providers/hashicorp/awscc/latest
1717
awscc = {
1818
source = "hashicorp/awscc"
19-
version = ">= 0.13.0, < 0.14.0"
19+
version = ">= 0.13.0"
20+
}
21+
22+
# see https://registry.terraform.io/providers/hashicorp/http/latest
23+
http = {
24+
source = "hashicorp/http"
25+
version = "2.1.0"
2026
}
2127

2228
# see https://registry.terraform.io/providers/hashicorp/random/latest/docs

terraform.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# see https://registry.terraform.io/providers/hashicorp/aws/latest
55
aws = {
66
source = "hashicorp/aws"
7-
version = "4.2.0"
7+
version = "4.3.0"
88

99
# see https://www.terraform.io/language/modules/develop/providers#provider-aliases-within-modules
1010
configuration_aliases = [

0 commit comments

Comments
 (0)