Ryan Petrello
2017-07-28 15:05:27 -04:00
parent 86fc441d68
commit 5e15f9e04e
4 changed files with 103 additions and 19 deletions

View File

@@ -632,7 +632,10 @@ def ssh(cls):
'type': 'string',
'secret': True,
'ask_at_runtime': True
}]
}],
'dependencies': {
'ssh_key_unlock': ['ssh_key_data'],
}
}
)
@@ -665,7 +668,10 @@ def scm(cls):
'label': 'Private Key Passphrase',
'type': 'string',
'secret': True
}]
}],
'dependencies': {
'ssh_key_unlock': ['ssh_key_data'],
}
}
)
@@ -725,7 +731,11 @@ def net(cls):
'label': 'Authorize Password',
'type': 'string',
'secret': True,
}]
}],
'dependencies': {
'ssh_key_unlock': ['ssh_key_data'],
'authorize_password': ['authorize'],
}
}
)