Unify all sensitive value plan output as "(sensitive value)"

Previously, there was mixed usage of "(sensitive)" and "(sensitive value)" and even though it was more common to see "(sensitive)", the thought is that it's a value we are hiding rather than describing something already shown.
This commit is contained in:
Brandon Croft
2022-10-20 10:09:21 -06:00
parent 076fccd8e7
commit bd744ad4e9
11 changed files with 67 additions and 63 deletions

View File

@@ -63,11 +63,11 @@ the `keys()` function will result in a list that is sensitive:
```shell
> local.baz
{
"a" = (sensitive)
"a" = (sensitive value)
"b" = "dog"
}
> keys(local.baz)
(sensitive)
(sensitive value)
```
## When Terraform Calls Functions