mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-14 05:28:51 -04:00
11 lines
263 B
Go
11 lines
263 B
Go
package lin
|
|
|
|
import (
|
|
"github.com/hashicorp/packer-plugin-sdk/multistep"
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
|
)
|
|
|
|
func SSHHost(state multistep.StateBag) (string, error) {
|
|
host := state.Get(constants.SSHHost).(string)
|
|
return host, nil
|
|
}
|