0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-11-22 00:30:40 +00:00

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
This commit is contained in:
edwinavalos 2016-12-21 07:08:55 -06:00 committed by Jacob McCann
parent 4197abea8d
commit 04a9dd1ead

View File

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