provider/azure: Wait longer for storage blob to go

This commit is contained in:
James Nugent 2016-01-06 16:11:45 -08:00
parent f995651573
commit 9346355ed5
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ func resourceAzureInstanceDelete(d *schema.ResourceData, meta interface{}) error
return err
}
err = resource.Retry(5*time.Minute, func() error {
err = resource.Retry(15*time.Minute, func() error {
exists, err := blobClient.BlobExists(
storageContainterName, fmt.Sprintf(osDiskBlobNameFormat, name),
)