PASSWORD

name: "input_PASSWORD"
inputs:
 password_1:
   type: PASSWORD
   name: "First password"
   required: true
 password_2:
   type: PASSWORD
   name: "Second Password"
execute_commands:
 - echo $password_1
 - echo $password_2
docker_image_name: "ubuntu"
docker_image_tag: "latest"

In this example, the first password input is mandatory (required: true), and the second is optional.

Custom action with PASSWORD inputsCustom action with PASSWORD inputs

You can see the field with the password is masked by default.

Last update:
Aug 6, 2024