Changing the DynamoDb Create to do a Read at the end

This commit is contained in:
stack72 2015-10-14 19:16:58 +01:00
parent 6d2fee9c28
commit 7af484c8f6
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ func resourceAwsDynamoDbTableCreate(d *schema.ResourceData, meta interface{}) er
return err
}
return nil
return resourceAwsDynamoDbTableRead(d, meta)
}
}