mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
* Remove duplicate unused SSHConfig funcs * call to SSHConfigFunc() for azure/arm builder * ncloud too * remove empty ncloud file
11 lines
259 B
Go
11 lines
259 B
Go
package lin
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
)
|
|
|
|
func SSHHost(state multistep.StateBag) (string, error) {
|
|
host := state.Get(constants.SSHHost).(string)
|
|
return host, nil
|
|
}
|