Skip to content

Commit 07034e2

Browse files
committed
Updating to Terraform 0.13
1 parent a768a2b commit 07034e2

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ version: 2
22
jobs:
33
check-format:
44
docker:
5-
- image: hashicorp/terraform:0.12.29
5+
- image: hashicorp/terraform
66
steps:
77
- checkout
88
- run:
99
command: terraform fmt -check -recursive -diff
1010
validate:
1111
docker:
12-
- image: hashicorp/terraform:0.12.29
12+
- image: hashicorp/terraform
1313
steps:
1414
- checkout
1515
- run:

examples/test/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ module "base-network" {
1414

1515
module "cluster" {
1616
source = "cn-terraform/ecs-cluster/aws"
17-
version = "1.0.5"
17+
version = "1.0.6"
1818
name = "test-cluster"
1919
}
2020

2121
module "td" {
2222
source = "cn-terraform/ecs-fargate-task-definition/aws"
23-
version = "1.0.11"
23+
version = "1.0.14"
2424
name_preffix = "test-td"
2525
container_image = "ubuntu"
2626
container_name = "test"

versions.tf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
}
6+
template = {
7+
source = "hashicorp/template"
8+
}
9+
}
10+
required_version = ">= 0.13"
11+
}

0 commit comments

Comments
 (0)