2019-09-10 10:52:42 -04:00
|
|
|
package yandex
|
|
|
|
|
|
|
|
import (
|
2020-11-17 19:31:03 -05:00
|
|
|
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
|
2019-09-10 10:52:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func commHost(state multistep.StateBag) (string, error) {
|
|
|
|
ipAddress := state.Get("instance_ip").(string)
|
|
|
|
return ipAddress, nil
|
|
|
|
}
|