Browse Source

Fix bug in terraform.remote kev value lookup (#31)

terraform.remote isn't valid, you should check in remote for the config section under it
pull/32/merge
edwinavalos 8 years ago
committed by Jacob McCann
parent
commit
04a9dd1ead
  1. 2
      main.go

2
main.go

@ -96,7 +96,7 @@ func run(c *cli.Context) error {
}
remote := Remote{}
json.Unmarshal([]byte(c.String("terraform.remote")), &remote)
json.Unmarshal([]byte(c.String("remote")), &remote)
var vars map[string]string
if c.String("vars") != "" {

Loading…
Cancel
Save