|
@ -73,6 +73,11 @@ func main() { |
|
|
Usage: "The root directory where the terraform files live. When unset, the top level directory will be assumed", |
|
|
Usage: "The root directory where the terraform files live. When unset, the top level directory will be assumed", |
|
|
EnvVar: "PLUGIN_ROOT_DIR", |
|
|
EnvVar: "PLUGIN_ROOT_DIR", |
|
|
}, |
|
|
}, |
|
|
|
|
|
cli.StringFlag{ |
|
|
|
|
|
Name: "data_dir", |
|
|
|
|
|
Usage: "The directory where terraform put's it's data files. When unset, .terraform assumed. (TF_DATA_DIR)", |
|
|
|
|
|
EnvVar: "PLUGIN_DATA_DIR", |
|
|
|
|
|
}, |
|
|
cli.StringFlag{ |
|
|
cli.StringFlag{ |
|
|
Name: "secrets", |
|
|
Name: "secrets", |
|
|
Usage: "a map of secrets to pass to the Terraform `plan` and `apply` commands. Each value is passed as a `<key>=<ENV>` option", |
|
|
Usage: "a map of secrets to pass to the Terraform `plan` and `apply` commands. Each value is passed as a `<key>=<ENV>` option", |
|
@ -145,6 +150,7 @@ func run(c *cli.Context) error { |
|
|
Sensitive: c.Bool("sensitive"), |
|
|
Sensitive: c.Bool("sensitive"), |
|
|
RoleARN: c.String("role_arn_to_assume"), |
|
|
RoleARN: c.String("role_arn_to_assume"), |
|
|
RootDir: c.String("root_dir"), |
|
|
RootDir: c.String("root_dir"), |
|
|
|
|
|
DataDir: c.String("data_dir"), |
|
|
Parallelism: c.Int("parallelism"), |
|
|
Parallelism: c.Int("parallelism"), |
|
|
Targets: c.StringSlice("targets"), |
|
|
Targets: c.StringSlice("targets"), |
|
|
VarFiles: c.StringSlice("var_files"), |
|
|
VarFiles: c.StringSlice("var_files"), |
|
|