Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform-docs doesn't document whether a variable or an output is sensitive.
variable "password" { description = "Password" sensitive = true type = string }
terraform-docs.exe markdown .
## Inputs | Name | Description | Type | Default | Required | Sensitive | |------|-------------|------|---------|:--------:|-----| | <a name="input_password"></a> [password](#input\password) | Password | `string` | n/a | yes | yes |
## Inputs | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:|-----| | <a name="input_password"></a> [password](#input\password) | Password | `string` | n/a | yes |
This error also occurs when using the terraform-docs json command.
terraform-docs version v0.18.0 228c7a7 windows/amd64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Terraform-docs doesn't document whether a variable or an output is sensitive.
How can we reproduce it?
Create a terraform variable like this:
variable "password" {
description = "Password"
sensitive = true
type = string
}
Run terraform-docs:
terraform-docs.exe markdown .
Expected behavior
Actual behavior
Further information
This error also occurs when using the terraform-docs json command.
Environment information
terraform-docs version v0.18.0 228c7a7 windows/amd64
The text was updated successfully, but these errors were encountered: