Skip to content

Commit

Permalink
Merge pull request #457 from terraform-providers/p-keyvault
Browse files Browse the repository at this point in the history
Increasing timeout to fix dns issues
  • Loading branch information
mbfrahry authored Oct 25, 2017
2 parents d5fccc8 + d9772b1 commit 4412866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_key_vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func resourceArmKeyVaultCreate(d *schema.ResourceData, meta interface{}) error {
if d.IsNewResource() {
if props := read.Properties; props != nil {
if vault := props.VaultURI; vault != nil {
err := resource.Retry(30*time.Second, checkKeyVaultDNSIsAvailable(*vault))
err := resource.Retry(120*time.Second, checkKeyVaultDNSIsAvailable(*vault))
if err != nil {
return err
}
Expand Down

0 comments on commit 4412866

Please sign in to comment.