Skip to content

Commit

Permalink
Merge pull request #43 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 e2bd086 + 135b341 commit 3a80d2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ Creates the following resources for anti-virus scanning:
* S3 Event to trigger function on object creation
* AWS Lambda function to scan S3 object and send alert to slack if any objects are infected and quarantined.

## Terraform Versions

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

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

## Usage

Expand Down Expand Up @@ -72,7 +67,7 @@ module "s3_anti_virus" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_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 3a80d2d

Please sign in to comment.