11 lines
207 B
Go
Raw Normal View History

2017-04-06 11:19:17 +02:00
package scaleway
import (
2018-02-05 16:50:32 -08:00
"github.com/hashicorp/packer/helper/multistep"
2017-04-06 11:19:17 +02:00
)
func commHost(state multistep.StateBag) (string, error) {
ipAddress := state.Get("server_ip").(string)
return ipAddress, nil
}