Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #126 from trussworks/rd-loosen-verion-reqs
Browse files Browse the repository at this point in the history
loosen tf versioning requirements
  • Loading branch information
rdhariwal authored Feb 1, 2021
2 parents 8c54162 + 4ab4215 commit eda58ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module "app_ecs_cluster" {
image_id = "${data.aws_ami.ecs_ami.image_id}"
instance_type = "t2.micro"
vpc_id = "${module.vpc.id}"
subnet_ids = "${module.vpc.private_subnets}"
desired_capacity = 3
max_size = 3
Expand All @@ -51,7 +52,7 @@ Terraform 0.11. Pin module version to ~> 1.0. Submit pull-requests to terraform0

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

## Providers
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module "app_ecs_cluster" {
name = var.test_name
environment = "test"

image_id = "${data.aws_ami.ecs_ami.image_id}"
image_id = data.aws_ami.ecs_ami.image_id
instance_type = "t2.micro"

vpc_id = module.vpc.vpc_id
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

terraform {
required_version = "~> 0.13.0"
required_version = ">= 0.13.0"

required_providers {
aws = "~> 3.0"
Expand Down

0 comments on commit eda58ac

Please sign in to comment.