12 lines
263 B
Go
Raw Permalink Normal View History

package lin
import (
2020-12-17 13:29:25 -08:00
"github.com/hashicorp/packer-plugin-sdk/multistep"
2017-04-04 13:39:01 -07:00
"github.com/hashicorp/packer/builder/azure/common/constants"
)
func SSHHost(state multistep.StateBag) (string, error) {
host := state.Get(constants.SSHHost).(string)
return host, nil
}