Skip to content

Commit

Permalink
Merge pull request #140 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 13e590d + c460210 commit b810d38
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 @@ -27,12 +27,6 @@ Creates the following resources:
- SES is only available in a [limited number of AWS Regions](https://docs.aws.amazon.com/general/latest/gr/ses.html).
- SES out of the box locks the service in development mode; please see this documentation on how to make it production ready. Until the service is in production mode you can only send emails to confirmed email accounts denoted in `from_addresses`

## Terraform Versions

Terraform 0.13 and newer. Pin module version to ~> 3.X. Submit pull-requests to master branch.

Terraform 0.12. Pin module version to ~> 2.X. Submit pull-requests to terraform012 branch.

## Usage

See [examples](examples/) for functional examples on how to use this module.
Expand Down Expand Up @@ -64,7 +58,7 @@ data "aws_route53_zone" "ses_domain" {

| Name | Version |
|------|---------|
| terraform | >= 0.13.0 |
| terraform | >= 1.0 |
| aws | >= 3.0 |

## 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.0"
required_version = ">= 1.0"

required_providers {
aws = ">= 3.0"
Expand Down

0 comments on commit b810d38

Please sign in to comment.