11 lines
211 B
Go
Raw Normal View History

2016-06-29 04:35:41 +02:00
package profitbricks
import (
"github.com/hashicorp/packer/helper/multistep"
2016-06-29 04:35:41 +02:00
)
func commHost(state multistep.StateBag) (string, error) {
ipAddress := state.Get("server_ip").(string)
return ipAddress, nil
}