mirror of
https://github.com/inspec/inspec
synced 2024-12-26 21:13:25 +00:00
20 lines
396 B
YAML
20 lines
396 B
YAML
|
name: metadata-sensitive
|
||
|
title: InSpec Profile
|
||
|
license: Apache-2.0
|
||
|
summary: A profile that tests the :sensitive flag on inputs
|
||
|
version: 0.1.0
|
||
|
supports:
|
||
|
platform: os
|
||
|
|
||
|
inputs:
|
||
|
- name: cleartext_input
|
||
|
value: visible-in-clear
|
||
|
|
||
|
- name: sensitive_input
|
||
|
sensitive: true
|
||
|
value: visible-in-secret
|
||
|
|
||
|
- name: explicitly_nonsensitive_input
|
||
|
sensitive: false
|
||
|
value: visible-in-clear
|