Skip to content

Commit

Permalink
azurerm_key_vault_managed_hardware_security_module - extend context…
Browse files Browse the repository at this point in the history
… timeouts for create and delete. (#14253)
  • Loading branch information
jackofallops authored Nov 18, 2021
1 parent b1031b2 commit 433b631
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ func resourceKeyVaultManagedHardwareSecurityModule() *pluginsdk.Resource {
}),

Timeouts: &pluginsdk.ResourceTimeout{
Create: pluginsdk.DefaultTimeout(30 * time.Minute),
Create: pluginsdk.DefaultTimeout(60 * time.Minute),
Read: pluginsdk.DefaultTimeout(5 * time.Minute),
Delete: pluginsdk.DefaultTimeout(30 * time.Minute),
Delete: pluginsdk.DefaultTimeout(60 * time.Minute),
},

Schema: map[string]*pluginsdk.Schema{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ The following attributes are exported:

The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions:

* `create` - (Defaults to 30 minutes) Used when creating the Key Vault Managed Hardware Security Module.
* `create` - (Defaults to 60 minutes) Used when creating the Key Vault Managed Hardware Security Module.
* `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Managed Hardware Security Module.
* `delete` - (Defaults to 30 minutes) Used when deleting the Key Vault Managed Hardware Security Module.
* `delete` - (Defaults to 60 minutes) Used when deleting the Key Vault Managed Hardware Security Module.

## Import

Expand Down

0 comments on commit 433b631

Please sign in to comment.