17
votes

I want to script terraform for CI/CD purpose and I don't like CDing in scripts, I rather have specific paths.

I tried terraform init c:\my\folder\containing\tf-file

But running that puts the .terraform folder in my cwd.

4
In the next release there will be a TF_DATA_DIR env variable that can be set, but this isn't necessarily it's intended purpose, as you will want to make sure it's set differently for each config you want to target.JimB

4 Answers

5
votes

I know this is an old thread but... The command you are looking for is:

terraform -chdir=environments/production apply

Please see this link for help with the global option -chdir=":

Quote from the actual Terraform site:

The usual way to run Terraform is to first switch to the directory containing the .tf files for your root module (for example, using the cd command), so that Terraform will find those files automatically without any extra arguments.

In some cases though — particularly when wrapping Terraform in automation scripts — it can be convenient to run Terraform from a different directory than the root module directory. To allow that, Terraform supports a global option -chdir=... which you can include before the name of the subcommand you intend to run:

terraform -chdir=environments/production apply The chdir option instructs Terraform to change its working directory to the given directory before running the given subcommand. This means that any files that Terraform would normally read or write in the current working directory will be read or written in the given directory instead.

3
votes

The [DIR] option in terraform init command tells terraform where to process tf files from, but doesn't tell it where to store state files. If you want to change what local path state files are stored at, add a section to your main.tf to configure backend path.

terraform {
  backend "local" {
    path = "relative/path/to/terraform.tfstate"
  }
}

I haven't actually tried this out, but you may be able to pass the path from command line as:

-backend-config="path=/foo"
3
votes

Specify directory without option

terraform apply [options] ./path-to-dir

Or you could use -chdir option

terraform -chdir="./path-to-dir" apply
1
votes

By default, terraform init assumes that the working directory already contains a configuration and will attempt to initialize that configuration.

Optionally, init can be run against an empty directory with the -from-module=MODULE-SOURCE option, in which case the given module will be copied into the target directory before any other initialization steps are run.

https://www.terraform.io/docs/commands/init.html