mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-19 17:59:05 -05:00
34 lines
942 B
Go
34 lines
942 B
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package ssh
|
|
|
|
import (
|
|
"log"
|
|
|
|
"golang.org/x/crypto/ssh"
|
|
)
|
|
|
|
// An implementation of ssh.KeyboardInteractiveChallenge that simply sends
|
|
// back the password for all questions. The questions are logged.
|
|
func PasswordKeyboardInteractive(password string) ssh.KeyboardInteractiveChallenge {
|
|
return func(user, instruction string, questions []string, echos []bool) ([]string, error) {
|
|
log.Printf("Keyboard interactive challenge: ")
|
|
log.Printf("-- User: %s", user)
|
|
log.Printf("-- Instructions: %s", instruction)
|
|
for i, question := range questions {
|
|
log.Printf("-- Question %d: %s", i+1, question)
|
|
}
|
|
|
|
// Just send the password back for all questions
|
|
answers := make([]string, len(questions))
|
|
for i := range answers {
|
|
answers[i] = string(password)
|
|
}
|
|
|
|
return answers, nil
|
|
}
|
|
}
|