Skip to content

Commit

Permalink
Merge pull request #343 from trussworks/deprecate-terraform-versions
Browse files Browse the repository at this point in the history
deprecate older terraform versions
  • Loading branch information
ralren authored Jun 8, 2023
2 parents f9239a8 + b4acdc8 commit a2010c0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
6 changes: 0 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ repos:
hooks:
- id: shell-lint

- repo: https://github.com/terraform-docs/terraform-docs
rev: "v0.16.0"
hooks:
- id: terraform-docs-go
args: ["markdown", "table", "--output-file", "README.md", "."]

- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.77.1
hooks:
Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ modify the `hello_world_container_ports` variable.
In production usage, we expect deployment tooling to manage the container
definitions going forward, not Terraform.

## Terraform Versions

Terraform 0.13 and 0.14. Pin module version to ~> 6.0. Submit pull-requests to master branch.

Terraform 0.12 is deprecated.

## Usage

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

| Name | Version |
|------|---------|
| terraform | >= 0.13 |
| terraform | >= 1.0 |
| aws | >= 3.34 |

## Providers
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.13"
required_version = ">= 1.0"

required_providers {
aws = {
Expand Down

0 comments on commit a2010c0

Please sign in to comment.