2017-03-03 16:56:17 +08:00
|
|
|
package ecs
|
|
|
|
|
|
|
|
import (
|
2018-01-22 15:32:33 -08:00
|
|
|
"context"
|
2017-03-03 16:56:17 +08:00
|
|
|
"fmt"
|
2017-05-25 18:49:35 -07:00
|
|
|
|
2019-04-26 10:37:49 +08:00
|
|
|
"github.com/aliyun/alibaba-cloud-sdk-go/services/ecs"
|
2018-01-19 16:18:44 -08:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-17 21:04:52 +08:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2017-03-03 16:56:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type stepConfigAlicloudPublicIP struct {
|
2018-03-13 07:07:10 +00:00
|
|
|
publicIPAddress string
|
|
|
|
RegionId string
|
2018-09-11 16:56:57 +08:00
|
|
|
SSHPrivateIp bool
|
2017-03-03 16:56:17 +08:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:50:02 +01:00
|
|
|
func (s *stepConfigAlicloudPublicIP) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
2019-04-26 10:37:49 +08:00
|
|
|
client := state.Get("client").(*ClientWrapper)
|
2017-03-03 16:56:17 +08:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2019-04-26 10:37:49 +08:00
|
|
|
instance := state.Get("instance").(*ecs.Instance)
|
2017-03-03 16:56:17 +08:00
|
|
|
|
2018-09-11 16:56:57 +08:00
|
|
|
if s.SSHPrivateIp {
|
|
|
|
ipaddress := instance.InnerIpAddress.IpAddress
|
|
|
|
if len(ipaddress) == 0 {
|
|
|
|
ui.Say("Failed to get private ip of instance")
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
state.Put("ipaddress", ipaddress[0])
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2019-04-26 10:37:49 +08:00
|
|
|
allocatePublicIpAddressRequest := ecs.CreateAllocatePublicIpAddressRequest()
|
|
|
|
allocatePublicIpAddressRequest.InstanceId = instance.InstanceId
|
|
|
|
ipaddress, err := client.AllocatePublicIpAddress(allocatePublicIpAddressRequest)
|
2017-03-03 16:56:17 +08:00
|
|
|
if err != nil {
|
2019-04-26 10:37:49 +08:00
|
|
|
return halt(state, err, "Error allocating public ip")
|
2017-03-03 16:56:17 +08:00
|
|
|
}
|
2019-04-26 10:37:49 +08:00
|
|
|
|
|
|
|
s.publicIPAddress = ipaddress.IpAddress
|
|
|
|
ui.Say(fmt.Sprintf("Allocated public ip address %s.", ipaddress.IpAddress))
|
|
|
|
state.Put("ipaddress", ipaddress.IpAddress)
|
2017-03-03 16:56:17 +08:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepConfigAlicloudPublicIP) Cleanup(state multistep.StateBag) {
|
|
|
|
|
|
|
|
}
|