0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-06-02 18:39:41 +02: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{}
json.Unmarshal([]byte(c.String("terraform.remote")), &remote)
json.Unmarshal([]byte(c.String("remote")), &remote)
var vars map[string]string
if c.String("vars") != "" {