Skip to content

Commit a2010c0

Browse files
authored
Merge pull request #343 from trussworks/deprecate-terraform-versions
deprecate older terraform versions
2 parents f9239a8 + b4acdc8 commit a2010c0

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ repos:
3434
hooks:
3535
- id: shell-lint
3636

37-
- repo: https://github.com/terraform-docs/terraform-docs
38-
rev: "v0.16.0"
39-
hooks:
40-
- id: terraform-docs-go
41-
args: ["markdown", "table", "--output-file", "README.md", "."]
42-
4337
- repo: https://github.com/antonbabenko/pre-commit-terraform
4438
rev: v1.77.1
4539
hooks:

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@ modify the `hello_world_container_ports` variable.
1919
In production usage, we expect deployment tooling to manage the container
2020
definitions going forward, not Terraform.
2121

22-
## Terraform Versions
23-
24-
Terraform 0.13 and 0.14. Pin module version to ~> 6.0. Submit pull-requests to master branch.
25-
26-
Terraform 0.12 is deprecated.
27-
2822
## Usage
2923

3024
### ECS service associated with an Application Load Balancer (ALB)
@@ -105,7 +99,7 @@ module "app_ecs_service" {
10599

106100
| Name | Version |
107101
|------|---------|
108-
| terraform | >= 0.13 |
102+
| terraform | >= 1.0 |
109103
| aws | >= 3.34 |
110104

111105
## Providers

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 0.13"
2+
required_version = ">= 1.0"
33

44
required_providers {
55
aws = {

0 commit comments

Comments
 (0)