0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-09-19 15:32:45 +02:00

revert godotenv.Load to main.go

This commit is contained in:
Neemias Junior 2019-11-26 21:52:36 +01:00 committed by Jacob McCann
parent 22f9a710f1
commit efe3702937
No known key found for this signature in database
GPG Key ID: B5A476DE32B9AE72
2 changed files with 5 additions and 7 deletions

View File

@ -5,6 +5,7 @@ import (
"os"
"github.com/Sirupsen/logrus"
"github.com/joho/godotenv"
"github.com/urfave/cli"
)
@ -125,6 +126,10 @@ func run(c *cli.Context) error {
"Revision": revision,
}).Info("Drone Terraform Plugin Version")
if c.String("env_file") != "" {
_ = godotenv.Load(c.String("env_file"))
}
var vars map[string]string
if c.String("vars") != "" {
if err := json.Unmarshal([]byte(c.String("vars")), &vars); err != nil {
@ -157,7 +162,6 @@ func run(c *cli.Context) error {
Parallelism: c.Int("parallelism"),
Targets: c.StringSlice("targets"),
VarFiles: c.StringSlice("var_files"),
EnvFile: c.String("env_file"),
TerraformDataDir: c.String("tf_data_dir"),
},
Netrc: Netrc{

View File

@ -16,7 +16,6 @@ import (
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/sts"
"github.com/joho/godotenv"
)
type (
@ -34,7 +33,6 @@ type (
Parallelism int
Targets []string
VarFiles []string
EnvFile string
TerraformDataDir string
}
@ -79,10 +77,6 @@ func (p Plugin) Exec() error {
}
}
if p.Config.EnvFile != "" {
_ = godotenv.Load(p.Config.EnvFile)
}
if p.Config.RoleARN != "" {
assumeRole(p.Config.RoleARN)
}