Files
Packer-Cn/builder/oracle/common/ssh.go
T

11 lines
207 B
Go
Raw Normal View History

2018-01-17 16:33:35 -08:00
package common
import (
2018-01-25 14:45:09 -08:00
"github.com/hashicorp/packer/helper/multistep"
2018-01-17 16:33:35 -08:00
)
func CommHost(state multistep.StateBag) (string, error) {
ipAddress := state.Get("instance_ip").(string)
return ipAddress, nil
}