2015-05-31 16:58:14 +02:00
|
|
|
package packet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
"github.com/packethost/packngo"
|
|
|
|
)
|
|
|
|
|
|
|
|
func resourcePacketSSHKey() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourcePacketSSHKeyCreate,
|
|
|
|
Read: resourcePacketSSHKeyRead,
|
|
|
|
Update: resourcePacketSSHKeyUpdate,
|
|
|
|
Delete: resourcePacketSSHKeyDelete,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"public_key": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"fingerprint": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"created": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"updated": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourcePacketSSHKeyCreate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
client := meta.(*packngo.Client)
|
|
|
|
|
|
|
|
createRequest := &packngo.SSHKeyCreateRequest{
|
|
|
|
Label: d.Get("name").(string),
|
|
|
|
Key: d.Get("public_key").(string),
|
|
|
|
}
|
|
|
|
|
|
|
|
key, _, err := client.SSHKeys.Create(createRequest)
|
|
|
|
if err != nil {
|
2016-01-14 16:50:15 +01:00
|
|
|
return friendlyError(err)
|
2015-05-31 16:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
d.SetId(key.ID)
|
|
|
|
|
|
|
|
return resourcePacketSSHKeyRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourcePacketSSHKeyRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
client := meta.(*packngo.Client)
|
|
|
|
|
|
|
|
key, _, err := client.SSHKeys.Get(d.Id())
|
|
|
|
if err != nil {
|
2016-01-14 16:50:15 +01:00
|
|
|
err = friendlyError(err)
|
|
|
|
|
2015-05-31 16:58:14 +02:00
|
|
|
// If the key is somehow already destroyed, mark as
|
|
|
|
// succesfully gone
|
2016-01-14 16:50:15 +01:00
|
|
|
if isNotFound(err) {
|
2015-05-31 16:58:14 +02:00
|
|
|
d.SetId("")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-14 16:50:15 +01:00
|
|
|
return err
|
2015-05-31 16:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
d.Set("id", key.ID)
|
|
|
|
d.Set("name", key.Label)
|
|
|
|
d.Set("public_key", key.Key)
|
|
|
|
d.Set("fingerprint", key.FingerPrint)
|
|
|
|
d.Set("created", key.Created)
|
|
|
|
d.Set("updated", key.Updated)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourcePacketSSHKeyUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
client := meta.(*packngo.Client)
|
|
|
|
|
|
|
|
updateRequest := &packngo.SSHKeyUpdateRequest{
|
|
|
|
ID: d.Get("id").(string),
|
|
|
|
Label: d.Get("name").(string),
|
|
|
|
Key: d.Get("public_key").(string),
|
|
|
|
}
|
|
|
|
|
|
|
|
_, _, err := client.SSHKeys.Update(updateRequest)
|
|
|
|
if err != nil {
|
2016-01-14 16:50:15 +01:00
|
|
|
return friendlyError(err)
|
2015-05-31 16:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return resourcePacketSSHKeyRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourcePacketSSHKeyDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
client := meta.(*packngo.Client)
|
|
|
|
|
|
|
|
_, err := client.SSHKeys.Delete(d.Id())
|
|
|
|
if err != nil {
|
2016-01-14 16:50:15 +01:00
|
|
|
return friendlyError(err)
|
2015-05-31 16:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
d.SetId("")
|
|
|
|
return nil
|
|
|
|
}
|