2018-01-22 19:54:49 -05:00
|
|
|
package classic
|
|
|
|
|
|
|
|
import (
|
2018-01-25 17:43:55 -05:00
|
|
|
"context"
|
2018-01-22 19:54:49 -05:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/go-oracle-terraform/compute"
|
2018-01-26 12:51:16 -05:00
|
|
|
uuid "github.com/hashicorp/go-uuid"
|
2018-01-25 17:45:09 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2018-01-22 19:54:49 -05:00
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type stepAddKeysToAPI struct{}
|
|
|
|
|
2018-01-25 17:42:39 -05:00
|
|
|
func (s *stepAddKeysToAPI) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2018-01-22 19:54:49 -05:00
|
|
|
// get variables from state
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
config := state.Get("config").(*Config)
|
|
|
|
client := state.Get("client").(*compute.ComputeClient)
|
|
|
|
|
|
|
|
// grab packer-generated key from statebag context.
|
|
|
|
sshPublicKey := strings.TrimSpace(state.Get("publicKey").(string))
|
|
|
|
|
|
|
|
// form API call to add key to compute cloud
|
2018-01-26 12:51:16 -05:00
|
|
|
uuid_string, err := uuid.GenerateUUID()
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error creating unique SSH key name: %s", err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
sshKeyName := fmt.Sprintf("/Compute-%s/%s/packer_generated_key_%s",
|
|
|
|
config.IdentityDomain, config.Username, uuid_string)
|
2018-01-22 19:54:49 -05:00
|
|
|
|
2018-01-26 16:12:35 -05:00
|
|
|
ui.Say(fmt.Sprintf("Creating temporary key: %s", sshKeyName))
|
|
|
|
|
2018-01-22 19:54:49 -05:00
|
|
|
sshKeysClient := client.SSHKeys()
|
|
|
|
sshKeysInput := compute.CreateSSHKeyInput{
|
|
|
|
Name: sshKeyName,
|
|
|
|
Key: sshPublicKey,
|
|
|
|
Enabled: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the packer-generated SSH key into the Oracle Compute cloud.
|
|
|
|
keyInfo, err := sshKeysClient.CreateSSHKey(&sshKeysInput)
|
|
|
|
if err != nil {
|
2018-01-26 12:51:16 -05:00
|
|
|
err = fmt.Errorf("Problem adding Public SSH key through Oracle's API: %s", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
2018-01-22 19:54:49 -05:00
|
|
|
}
|
|
|
|
state.Put("key_name", keyInfo.Name)
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepAddKeysToAPI) Cleanup(state multistep.StateBag) {
|
2018-01-26 12:51:16 -05:00
|
|
|
// Delete the keys we created during this run
|
|
|
|
keyName := state.Get("key_name").(string)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
ui.Say("Deleting SSH keys...")
|
|
|
|
deleteInput := compute.DeleteSSHKeyInput{Name: keyName}
|
|
|
|
client := state.Get("client").(*compute.ComputeClient)
|
|
|
|
deleteClient := client.SSHKeys()
|
|
|
|
err := deleteClient.DeleteSSHKey(&deleteInput)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error deleting SSH keys: %s", err.Error()))
|
|
|
|
}
|
|
|
|
return
|
2018-01-22 19:54:49 -05:00
|
|
|
}
|