mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-09 18:00:40 +00:00
Updated DOCS to have the new tf_data_dir param
This commit is contained in:
parent
13a6625b51
commit
baff3b84aa
16
DOCS.md
16
DOCS.md
@ -196,6 +196,19 @@ pipeline:
|
||||
+ 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
|
||||
|
||||
actions
|
||||
@ -253,3 +266,6 @@ root_dir
|
||||
|
||||
parallelism
|
||||
: 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.
|
||||
|
2
main.go
2
main.go
@ -110,7 +110,7 @@ func main() {
|
||||
},
|
||||
cli.StringFlag{
|
||||
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",
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user