mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-22 10:40:39 +00:00
Update DOCS on sensitive flag
This commit is contained in:
parent
0a79958afc
commit
dc0b0cb14e
23
DOCS.md
23
DOCS.md
@ -7,6 +7,7 @@ Use the Terraform plugin to apply the infrastructure configuration contained wit
|
|||||||
* `vars` - a map of variables to pass to the Terraform `plan` and `apply` commands. Each value is passed as a `-var
|
* `vars` - a map of variables to pass to the Terraform `plan` and `apply` commands. Each value is passed as a `-var
|
||||||
<key>=<value>` option.
|
<key>=<value>` option.
|
||||||
* `ca_cert` - ca cert to add to your environment to allow terraform to use internal/private resources
|
* `ca_cert` - ca cert to add to your environment to allow terraform to use internal/private resources
|
||||||
|
* `sensitive` (default: `false`) - Whether or not to suppress terraform commands to stdout.
|
||||||
|
|
||||||
The following is a sample Terraform configuration in your .drone.yml file:
|
The following is a sample Terraform configuration in your .drone.yml file:
|
||||||
|
|
||||||
@ -50,3 +51,25 @@ deploy:
|
|||||||
asdfsadf
|
asdfsadf
|
||||||
-----END CERTIFICATE-----
|
-----END CERTIFICATE-----
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Suppress Sensitive Output
|
||||||
|
You may be passing sensitive vars to your terraform commands. If you do not want
|
||||||
|
the terraform commands to display in your drone logs then set `sensitive` to `true`.
|
||||||
|
The output from the commands themselves will still display, it just won't show
|
||||||
|
want command is actually being ran.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
deploy:
|
||||||
|
terraform:
|
||||||
|
dry_run: false
|
||||||
|
sensitive: true
|
||||||
|
remote:
|
||||||
|
backend: S3
|
||||||
|
config:
|
||||||
|
bucket: my-terraform-config-bucket
|
||||||
|
key: tf-states/my-project
|
||||||
|
region: us-east-1
|
||||||
|
vars:
|
||||||
|
app_name: my-project
|
||||||
|
app_version: 1.0.0
|
||||||
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user