Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5d4ae30

Browse files
committedMay 25, 2023
chore: upgrade Terraform and AWS Provider
1 parent ad70470 commit 5d4ae30

File tree

4 files changed

+32
-7
lines changed

4 files changed

+32
-7
lines changed
 

‎.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repos:
2525
exclude: README.m(ark)?d(own)?
2626

2727
- repo: https://github.com/igorshubovych/markdownlint-cli
28-
rev: v0.33.0
28+
rev: v0.34.0
2929
hooks:
3030
- id: markdownlint
3131

@@ -41,6 +41,6 @@ repos:
4141
args: ["markdown", "table", "--output-file", "README.md", "."]
4242

4343
- repo: https://github.com/antonbabenko/pre-commit-terraform
44-
rev: v1.77.1
44+
rev: v1.79.1
4545
hooks:
4646
- id: terraform_fmt

‎.terraform.lock.hcl

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

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ module "acm_cert" {
2424

2525
| Name | Version |
2626
|------|---------|
27-
| terraform | >= 0.13.0 |
28-
| aws | >= 3.0 |
27+
| terraform | >= 1.4.0, < 2.0.0 |
28+
| aws | >= 4.3.5, < 5.0.0 |
2929

3030
## Providers
3131

3232
| Name | Version |
3333
|------|---------|
34-
| aws | >= 3.0 |
34+
| aws | 4.67.0 |
3535

3636
## Modules
3737

‎versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = ">= 0.13.0"
2+
required_version = ">= 1.4.0, < 2.0.0"
33

44
required_providers {
5-
aws = ">= 3.0"
5+
aws = ">= 4.3.5, < 5.0.0"
66
}
77
}

0 commit comments

Comments
 (0)
Please sign in to comment.