Browse Source

Add TF_DATA_DIR parameter

pull/83/head
DanBUK 6 years ago
parent
commit
2207fa80fb
No known key found for this signature in database GPG Key ID: 27052C4772FC4FA2
  1. 2
      DOCS.md
  2. 6
      main.go
  3. 5
      plugin.go

2
DOCS.md

@ -222,5 +222,7 @@ role_arn_to_assume
root_dir root_dir
: The root directory where the terraform files live. When unset, the top level directory will be assumed. : The root directory where the terraform files live. When unset, the top level directory will be assumed.
data_dir
: The directory where terraform put's it's data files. When unset, .terraform assumed. (TF_DATA_DIR)
parallelism parallelism
: The number of concurrent operations as Terraform walks its graph. : The number of concurrent operations as Terraform walks its graph.

6
main.go

@ -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"),

5
plugin.go

@ -29,6 +29,7 @@ type (
Sensitive bool Sensitive bool
RoleARN string RoleARN string
RootDir string RootDir string
DataDir string
Parallelism int Parallelism int
Targets []string Targets []string
VarFiles []string VarFiles []string
@ -71,6 +72,10 @@ func (p Plugin) Exec() error {
assumeRole(p.Config.RoleARN) assumeRole(p.Config.RoleARN)
} }
if p.Config.DataDir != "" {
os.Setenv("TF_DATA_DIR", p.Config.DataDir)
}
// writing the .netrc file with Github credentials in it. // writing the .netrc file with Github credentials in it.
err := writeNetrc(p.Netrc.Machine, p.Netrc.Login, p.Netrc.Password) err := writeNetrc(p.Netrc.Machine, p.Netrc.Login, p.Netrc.Password)
if err != nil { if err != nil {

Loading…
Cancel
Save