mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-09 18:00:40 +00:00
Allow 'secrets' and 'vars' to be blank
This commit is contained in:
parent
ef64a0f2a3
commit
914ed2ba90
4
main.go
4
main.go
@ -93,13 +93,17 @@ func run(c *cli.Context) error {
|
||||
json.Unmarshal([]byte(c.String("terraform.remote")), &remote)
|
||||
|
||||
var vars map[string]string
|
||||
if c.String("terraform.vars") != "" {
|
||||
if err := json.Unmarshal([]byte(c.String("terraform.vars")), &vars); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
var secrets map[string]string
|
||||
if c.String("terraform.secrets") != "" {
|
||||
if err := json.Unmarshal([]byte(c.String("terraform.secrets")), &secrets); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
plugin := Plugin{
|
||||
Config: Config{
|
||||
|
Loading…
Reference in New Issue
Block a user