diff --git a/Dockerfile b/Dockerfile index 9e5ff2d..334759c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM hashicorp/terraform:0.12.19 +FROM hashicorp/terraform:0.12.24 RUN \ apk add --no-cache make bash ca-certificates jq curl ruby ruby-json;\ diff --git a/Makefile b/Makefile index 529eda8..b3d9a9b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # ------------------ # TERRAFORM-MAKEFILE -# v0.12.19 +# v0.12.24 # ------------------ # # Terraform makefile is a helper to run terraform commands @@ -29,7 +29,7 @@ ## # TERRAFORM INSTALL ## -version ?= "0.12.19" +version ?= "0.12.24" os ?= $(shell uname|tr A-Z a-z) ifeq ($(shell uname -m),x86_64) arch ?= "amd64" diff --git a/README.md b/README.md index 5fc6f80..92dce6e 100644 --- a/README.md +++ b/README.md @@ -66,14 +66,15 @@ List of commands made available ~~~bash > make -Terraform-makefile v0.12.19 +Terraform-makefile v0.12.24 console Console infra resources destroy Destroy resources dry-run Dry run resources changes +fmt Rewrites config to canonical format import Import infra resources install Install terraform and dependencies -lint Rewrites config to canonical format +lint Lint the HCL code refresh Refresh infra resources run Execute resources changes show List infra resources diff --git a/VERSION b/VERSION index 9cbfc3f..421e954 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.12.19 +0.12.24 diff --git a/terraform.sh b/terraform.sh index 3ff50b8..a78933d 100755 --- a/terraform.sh +++ b/terraform.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # ------------------ # TERRAFORM-MAKEFILE -# v0.12.19 +# v0.12.24 # ------------------ # # This Makefile is maintained on Github.com.