Skip to content

Commit aaf3d19

Browse files
committed
Update porter.yaml to modify parameters and outputs for sensitive data handling
- Changed the output name from 'name' to 'admin-password' - Updated the path for the password parameter and output - Marked the password output as sensitive Signed-off-by: Kim Christensen <[email protected]>
1 parent 3380eff commit aaf3d19

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

sensitive-data/porter.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,17 @@ parameters:
88
- name: name
99
type: string
1010
default: example-bundle
11-
path: /cnab/app/foo/name.txt
12-
source:
13-
output: name
1411
- name: password
1512
type: string
13+
path: /cnab/app/foo/password.txt
14+
source:
15+
output: admin-password
1616
sensitive: true
1717

1818
outputs:
19-
- name: name
20-
path: /cnab/app/foo/name.txt
19+
- name: admin-password
20+
type: string
21+
path: /cnab/app/foo/password.txt
2122
sensitive: true
2223

2324
mixins:

0 commit comments

Comments
 (0)