0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-11-12 17:10:39 +00:00

Updated DOCS to have the new tf_data_dir param

This commit is contained in:
Caio Quirino 2019-07-22 16:20:29 +02:00
parent 13a6625b51
commit baff3b84aa
No known key found for this signature in database
GPG Key ID: 94564A4043FF99AC
2 changed files with 17 additions and 1 deletions

16
DOCS.md
View File

@ -196,6 +196,19 @@ pipeline:
+ check: true + check: true
``` ```
You may want to run some executions in parallel without having racing condition problems with the .terraform dir and
plan's output file.
```diff
pipeline:
backend-service:
image: jmccann/drone-terraform:<version>
+ tf_data_dir: .backend-service.terraform
frontend-service:
image: jmccann/drone-terraform:<version>
+ tf_data_dir: .frontend-service.terraform
```
# Parameter Reference # Parameter Reference
actions actions
@ -253,3 +266,6 @@ root_dir
parallelism parallelism
: The number of concurrent operations as Terraform walks its graph. : The number of concurrent operations as Terraform walks its graph.
tf_data_dir
: changes the location where Terraform keeps its per-working-directory data, such as the current remote backend configuration.

View File

@ -110,7 +110,7 @@ func main() {
}, },
cli.StringFlag{ cli.StringFlag{
Name: "tf_data_dir", Name: "tf_data_dir",
Usage: "changes the location where Terraform keeps its per-working-directory data, such as the current remote backend configuration.", Usage: "changes the location where Terraform keeps its per-working-directory data, such as the current remote backend configuration",
EnvVar: "PLUGIN_TF_DATA_DIR", EnvVar: "PLUGIN_TF_DATA_DIR",
}, },
} }