2016-03-04 05:14:55 -05:00
|
|
|
package lin
|
|
|
|
|
|
|
|
import (
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2016-03-04 05:14:55 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func SSHHost(state multistep.StateBag) (string, error) {
|
|
|
|
host := state.Get(constants.SSHHost).(string)
|
|
|
|
return host, nil
|
|
|
|
}
|