providers/aws: eip uses passthrough importstate

This commit is contained in:
Mitchell Hashimoto 2016-05-11 13:10:36 -07:00
parent b7d4767dd6
commit 420e13d2f2
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 1 additions and 7 deletions

View File

@ -20,7 +20,7 @@ func resourceAwsEip() *schema.Resource {
Update: resourceAwsEipUpdate,
Delete: resourceAwsEipDelete,
Importer: &schema.ResourceImporter{
State: resourceAwsEipImportState,
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
@ -292,12 +292,6 @@ 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)