From 77a61157fb2a60605dc09f51f30a88d515e8e5fa Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 13 May 2015 20:18:40 -0700 Subject: [PATCH] command/push: var/var-file supported, note in help [GH-1950] --- command/push.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/command/push.go b/command/push.go index a4649a822..80d72c4dc 100644 --- a/command/push.go +++ b/command/push.go @@ -211,6 +211,13 @@ Options: -token= Access token to use to upload. If blank or unspecified, the ATLAS_TOKEN environmental variable will be used. + -var 'foo=bar' Set a variable in the Terraform configuration. This + flag can be set multiple times. + + -var-file=foo Set variables in the Terraform configuration from + a file. If "terraform.tfvars" is present, it will be + automatically loaded if this flag is not specified. + -vcs=true If true (default), push will upload only files comitted to your VCS, if detected.