providers/aws: enable aws_eip importing

This commit is contained in:
Mitchell Hashimoto 2016-05-04 11:24:45 -07:00
parent 03931bfda9
commit eb9cb46256
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 9 additions and 0 deletions

View File

@ -19,6 +19,9 @@ func resourceAwsEip() *schema.Resource {
Read: resourceAwsEipRead,
Update: resourceAwsEipUpdate,
Delete: resourceAwsEipDelete,
Importer: &schema.ResourceImporter{
State: resourceAwsEipImportState,
},
Schema: map[string]*schema.Schema{
"vpc": &schema.Schema{
@ -289,6 +292,12 @@ func resourceAwsEipDelete(d *schema.ResourceData, meta interface{}) error {
})
}
func resourceAwsEipImportState(
d *schema.ResourceData,
meta interface{}) ([]*schema.ResourceData, error) {
return []*schema.ResourceData{d}, nil
}
func resourceAwsEipDomain(d *schema.ResourceData) string {
if v, ok := d.GetOk("domain"); ok {
return v.(string)