File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ version: 2
22jobs :
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 :
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ module "base-network" {
1414
1515module "cluster" {
1616 source = " cn-terraform/ecs-cluster/aws"
17- version = " 1.0.5 "
17+ version = " 1.0.6 "
1818 name = " test-cluster"
1919}
2020
2121module "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"
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments