diff --git a/CHANGELOG-v2.md b/CHANGELOG-v2.md index dedcf63ee7d0..0c4f2b693619 100644 --- a/CHANGELOG-v2.md +++ b/CHANGELOG-v2.md @@ -4136,7 +4136,7 @@ NOTES: FEATURES: -* **Custom Timeouts:** - all resources within the Azure Provider now allow configuring custom timeouts - please [see Terraform's Timeout documentation](https://www.terraform.io/docs/configuration/resources.html#operation-timeouts) and the documentation in each data source resource for more information. +* **Custom Timeouts:** - all resources within the Azure Provider now allow configuring custom timeouts - please [see Terraform's Timeout documentation](https://www.terraform.io/language/resources/syntax#operation-timeouts) and the documentation in each data source resource for more information. * **Requires Import:** The Azure Provider now checks for the presence of an existing resource prior to creating it - which means that if you try and create a resource which already exists (without importing it) you'll be prompted to import this into the state. * **New Data Source:** `azurerm_app_service_environment` ([#5508](https://github.com/hashicorp/terraform-provider-azurerm/issues/5508)) * **New Data Source:** `azurerm_eventhub_authorization_rule` ([#5805](https://github.com/hashicorp/terraform-provider-azurerm/issues/5805)) diff --git a/contributing/topics/guide-new-data-source.md b/contributing/topics/guide-new-data-source.md index a74260961805..b6385c92359b 100644 --- a/contributing/topics/guide-new-data-source.md +++ b/contributing/topics/guide-new-data-source.md @@ -588,7 +588,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group. ``` diff --git a/contributing/topics/guide-new-resource.md b/contributing/topics/guide-new-resource.md index 4e9aaa68531a..a453b82182b6 100644 --- a/contributing/topics/guide-new-resource.md +++ b/contributing/topics/guide-new-resource.md @@ -833,7 +833,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Resource Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group. diff --git a/examples/app-service/docker-compose/README.md b/examples/app-service/docker-compose/README.md index 8b6110ed6320..fec82c6ee2dd 100644 --- a/examples/app-service/docker-compose/README.md +++ b/examples/app-service/docker-compose/README.md @@ -5,7 +5,7 @@ This example provisions a Linux App Service which runs multiple Docker Container ### Notes * The Container is launched on the first HTTP Request, which can take a while. -* If you're not using App Service Slots and Deployments are handled outside of Terraform - [it's possible to ignore changes to specific fields in the configuration using `ignore_changes` within Terraform's `lifecycle` block](https://www.terraform.io/docs/configuration/resources.html#lifecycle), for example: +* If you're not using App Service Slots and Deployments are handled outside of Terraform - [it's possible to ignore changes to specific fields in the configuration using `ignore_changes` within Terraform's `lifecycle` block](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changes), for example: ```hcl resource "azurerm_app_service" "test" { diff --git a/examples/app-service/docker-kubernetes/README.md b/examples/app-service/docker-kubernetes/README.md index 412036f32e3f..340f7ef5905f 100644 --- a/examples/app-service/docker-kubernetes/README.md +++ b/examples/app-service/docker-kubernetes/README.md @@ -5,7 +5,7 @@ This example provisions a Linux App Service which runs multiple Docker Container ### Notes * The Container is launched on the first HTTP Request, which can take a while. -* If you're not using App Service Slots and Deployments are handled outside of Terraform - [it's possible to ignore changes to specific fields in the configuration using `ignore_changes` within Terraform's `lifecycle` block](https://www.terraform.io/docs/configuration/resources.html#lifecycle), for example: +* If you're not using App Service Slots and Deployments are handled outside of Terraform - [it's possible to ignore changes to specific fields in the configuration using `ignore_changes` within Terraform's `lifecycle` block](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changes), for example: ```hcl resource "azurerm_app_service" "test" { diff --git a/internal/tools/website-scaffold/main.go b/internal/tools/website-scaffold/main.go index cf8c7cb25eba..571a66e5fafb 100644 --- a/internal/tools/website-scaffold/main.go +++ b/internal/tools/website-scaffold/main.go @@ -464,7 +464,7 @@ func (gen documentationGenerator) timeoutsBlock() string { } timeouts := *gen.resource.Timeouts - timeoutsBlurb := "The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions:" + timeoutsBlurb := "The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions:" timeoutToFriendlyText := func(duration time.Duration) string { hours := int(math.Floor(duration.Hours())) diff --git a/website/docs/d/aadb2c_directory.html.markdown b/website/docs/d/aadb2c_directory.html.markdown index 4be9b508f28f..36000575ca34 100644 --- a/website/docs/d/aadb2c_directory.html.markdown +++ b/website/docs/d/aadb2c_directory.html.markdown @@ -53,6 +53,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the AAD B2C Directory. diff --git a/website/docs/d/active_directory_domain_service.html.markdown b/website/docs/d/active_directory_domain_service.html.markdown index dcde52861aa3..dd0c6bd55d71 100644 --- a/website/docs/d/active_directory_domain_service.html.markdown +++ b/website/docs/d/active_directory_domain_service.html.markdown @@ -107,6 +107,6 @@ A `security` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Domain Service. diff --git a/website/docs/d/advisor_recommendations.html.markdown b/website/docs/d/advisor_recommendations.html.markdown index 792a6432aff8..b7a5e5b88657 100644 --- a/website/docs/d/advisor_recommendations.html.markdown +++ b/website/docs/d/advisor_recommendations.html.markdown @@ -67,6 +67,6 @@ A `recommendations` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 10 minutes) Used when retrieving the Advisor Recommendations. diff --git a/website/docs/d/api_management.html.markdown b/website/docs/d/api_management.html.markdown index 855c8a26d1c1..13ebf896b005 100644 --- a/website/docs/d/api_management.html.markdown +++ b/website/docs/d/api_management.html.markdown @@ -181,6 +181,6 @@ A `sku` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Service. diff --git a/website/docs/d/api_management_api.html.markdown b/website/docs/d/api_management_api.html.markdown index 6366b3be2d20..230d5e7f51f3 100644 --- a/website/docs/d/api_management_api.html.markdown +++ b/website/docs/d/api_management_api.html.markdown @@ -81,6 +81,6 @@ A `wsdl_selector` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management API. diff --git a/website/docs/d/api_management_api_version_set.html.markdown b/website/docs/d/api_management_api_version_set.html.markdown index 3e2788eb29b4..d34d9ad1b9ac 100644 --- a/website/docs/d/api_management_api_version_set.html.markdown +++ b/website/docs/d/api_management_api_version_set.html.markdown @@ -48,6 +48,6 @@ output "api_management_api_version_set_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Version Set. diff --git a/website/docs/d/api_management_gateway.html.markdown b/website/docs/d/api_management_gateway.html.markdown index e9c79f94eef3..9933a1cec503 100644 --- a/website/docs/d/api_management_gateway.html.markdown +++ b/website/docs/d/api_management_gateway.html.markdown @@ -56,6 +56,6 @@ A `location_data` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Gateway. diff --git a/website/docs/d/api_management_group.html.markdown b/website/docs/d/api_management_group.html.markdown index c6cbde161e32..9eb0485ed923 100644 --- a/website/docs/d/api_management_group.html.markdown +++ b/website/docs/d/api_management_group.html.markdown @@ -46,6 +46,6 @@ output "group_type" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Group. diff --git a/website/docs/d/api_management_product.html.markdown b/website/docs/d/api_management_product.html.markdown index 26d2a54ea601..044571e8ed8c 100644 --- a/website/docs/d/api_management_product.html.markdown +++ b/website/docs/d/api_management_product.html.markdown @@ -52,6 +52,6 @@ output "product_terms" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Product. diff --git a/website/docs/d/api_management_user.html.markdown b/website/docs/d/api_management_user.html.markdown index b2c4271d73fd..4040f0710157 100644 --- a/website/docs/d/api_management_user.html.markdown +++ b/website/docs/d/api_management_user.html.markdown @@ -48,6 +48,6 @@ output "notes" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management User. diff --git a/website/docs/d/app_configuration.html.markdown b/website/docs/d/app_configuration.html.markdown index 4a716d22d200..c8af3289217c 100644 --- a/website/docs/d/app_configuration.html.markdown +++ b/website/docs/d/app_configuration.html.markdown @@ -95,6 +95,6 @@ A `secondary_write_key` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Configuration. diff --git a/website/docs/d/app_configuration_key.html.markdown b/website/docs/d/app_configuration_key.html.markdown index cc01d6f47297..eb093aaa8251 100644 --- a/website/docs/d/app_configuration_key.html.markdown +++ b/website/docs/d/app_configuration_key.html.markdown @@ -58,6 +58,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Configuration Key. diff --git a/website/docs/d/app_configuration_keys.html.markdown b/website/docs/d/app_configuration_keys.html.markdown index 53038453200f..f4bfedd0b6cd 100644 --- a/website/docs/d/app_configuration_keys.html.markdown +++ b/website/docs/d/app_configuration_keys.html.markdown @@ -66,6 +66,6 @@ Each element in `items` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Configuration Key. diff --git a/website/docs/d/app_service.html.markdown b/website/docs/d/app_service.html.markdown index 1f883f4bb7dd..ef8328f0a27b 100644 --- a/website/docs/d/app_service.html.markdown +++ b/website/docs/d/app_service.html.markdown @@ -200,6 +200,6 @@ A `source_control` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Service. diff --git a/website/docs/d/app_service_certificate.html.markdown b/website/docs/d/app_service_certificate.html.markdown index 6da3b2679247..61de0bf27173 100644 --- a/website/docs/d/app_service_certificate.html.markdown +++ b/website/docs/d/app_service_certificate.html.markdown @@ -54,6 +54,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Certificate. diff --git a/website/docs/d/app_service_certificate_order.html.markdown b/website/docs/d/app_service_certificate_order.html.markdown index 8d84971b881b..c8d0bc2b03e8 100644 --- a/website/docs/d/app_service_certificate_order.html.markdown +++ b/website/docs/d/app_service_certificate_order.html.markdown @@ -79,6 +79,6 @@ output "certificate_order_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Certificate Order. diff --git a/website/docs/d/app_service_environment.html.markdown b/website/docs/d/app_service_environment.html.markdown index 1c08d1394dcd..6359b0ad0792 100644 --- a/website/docs/d/app_service_environment.html.markdown +++ b/website/docs/d/app_service_environment.html.markdown @@ -64,6 +64,6 @@ A `cluster_setting` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: - `read` - (Defaults to 5 minutes) Used when retrieving the App Service Environment. diff --git a/website/docs/d/app_service_environment_v3.html.markdown b/website/docs/d/app_service_environment_v3.html.markdown index 841fc2c3786e..812c73603e05 100644 --- a/website/docs/d/app_service_environment_v3.html.markdown +++ b/website/docs/d/app_service_environment_v3.html.markdown @@ -88,6 +88,6 @@ An `inbound_network_dependencies` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the 3rd Generation (v3) App Service Environment. diff --git a/website/docs/d/app_service_plan.html.markdown b/website/docs/d/app_service_plan.html.markdown index a096d1d3b755..77af5f66f114 100644 --- a/website/docs/d/app_service_plan.html.markdown +++ b/website/docs/d/app_service_plan.html.markdown @@ -70,6 +70,6 @@ A `sku` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Plan. diff --git a/website/docs/d/application_gateway.html.markdown b/website/docs/d/application_gateway.html.markdown index 0d31f4aa79dc..753e48c38430 100644 --- a/website/docs/d/application_gateway.html.markdown +++ b/website/docs/d/application_gateway.html.markdown @@ -53,6 +53,6 @@ A `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Application Gateway. diff --git a/website/docs/d/application_insights.html.markdown b/website/docs/d/application_insights.html.markdown index 37762e045686..d24fcf397774 100644 --- a/website/docs/d/application_insights.html.markdown +++ b/website/docs/d/application_insights.html.markdown @@ -42,6 +42,6 @@ output "application_insights_instrumentation_key" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Application Insights component. diff --git a/website/docs/d/application_security_group.html.markdown b/website/docs/d/application_security_group.html.markdown index 1d1ac956b22a..962123ce07c6 100644 --- a/website/docs/d/application_security_group.html.markdown +++ b/website/docs/d/application_security_group.html.markdown @@ -43,6 +43,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Application Security Group. diff --git a/website/docs/d/attestation.html.markdown b/website/docs/d/attestation.html.markdown index 19e91d338439..2c92d7133339 100644 --- a/website/docs/d/attestation.html.markdown +++ b/website/docs/d/attestation.html.markdown @@ -47,6 +47,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Attestation Provider. diff --git a/website/docs/d/automation_account.html.markdown b/website/docs/d/automation_account.html.markdown index ff9880b495b7..253351354cbc 100644 --- a/website/docs/d/automation_account.html.markdown +++ b/website/docs/d/automation_account.html.markdown @@ -41,6 +41,6 @@ output "automation_account_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Automation Account. diff --git a/website/docs/d/automation_variable_bool.html.markdown b/website/docs/d/automation_variable_bool.html.markdown index b592d585125b..a6a9b3e6391e 100644 --- a/website/docs/d/automation_variable_bool.html.markdown +++ b/website/docs/d/automation_variable_bool.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Automation Bool Variable. diff --git a/website/docs/d/automation_variable_datetime.html.markdown b/website/docs/d/automation_variable_datetime.html.markdown index a87c44d3dcdf..616581c7ead9 100644 --- a/website/docs/d/automation_variable_datetime.html.markdown +++ b/website/docs/d/automation_variable_datetime.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Automation Datetime Variable. diff --git a/website/docs/d/automation_variable_int.html.markdown b/website/docs/d/automation_variable_int.html.markdown index 6bf3196c77f3..176230fa587e 100644 --- a/website/docs/d/automation_variable_int.html.markdown +++ b/website/docs/d/automation_variable_int.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Automation Int Variable. diff --git a/website/docs/d/automation_variable_string.html.markdown b/website/docs/d/automation_variable_string.html.markdown index fd15f8e9eb21..d25cbe20dcca 100644 --- a/website/docs/d/automation_variable_string.html.markdown +++ b/website/docs/d/automation_variable_string.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Automation String Variable. diff --git a/website/docs/d/availability_set.html.markdown b/website/docs/d/availability_set.html.markdown index 60ce07b2433e..3eff0dbf8830 100644 --- a/website/docs/d/availability_set.html.markdown +++ b/website/docs/d/availability_set.html.markdown @@ -49,6 +49,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Availability Set. diff --git a/website/docs/d/backup_policy_file_share.html.markdown b/website/docs/d/backup_policy_file_share.html.markdown index 755e96b181cd..5cb72bbf6705 100644 --- a/website/docs/d/backup_policy_file_share.html.markdown +++ b/website/docs/d/backup_policy_file_share.html.markdown @@ -38,6 +38,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: - `read` - (Defaults to 5 minutes) Used when retrieving the Recovery Services File Share Protection Policy. diff --git a/website/docs/d/backup_policy_vm.html.markdown b/website/docs/d/backup_policy_vm.html.markdown index 067acd1bcede..fc14d0b673eb 100644 --- a/website/docs/d/backup_policy_vm.html.markdown +++ b/website/docs/d/backup_policy_vm.html.markdown @@ -38,6 +38,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Recovery Services VM Protection Policy. diff --git a/website/docs/d/batch_account.html.markdown b/website/docs/d/batch_account.html.markdown index 6477d90f7e7e..9168366be0ff 100644 --- a/website/docs/d/batch_account.html.markdown +++ b/website/docs/d/batch_account.html.markdown @@ -68,6 +68,6 @@ A `key_vault_reference` block have the following properties: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Batch Account. diff --git a/website/docs/d/batch_application.html.markdown b/website/docs/d/batch_application.html.markdown index 64f48b39b55d..3d987b5da8c3 100644 --- a/website/docs/d/batch_application.html.markdown +++ b/website/docs/d/batch_application.html.markdown @@ -48,6 +48,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Batch Application. diff --git a/website/docs/d/batch_certificate.html.markdown b/website/docs/d/batch_certificate.html.markdown index dbf1d0b16d46..72a9ba04019f 100644 --- a/website/docs/d/batch_certificate.html.markdown +++ b/website/docs/d/batch_certificate.html.markdown @@ -49,6 +49,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the certificate. diff --git a/website/docs/d/batch_pool.html.markdown b/website/docs/d/batch_pool.html.markdown index 49d9377f4ddd..c1e733525c54 100644 --- a/website/docs/d/batch_pool.html.markdown +++ b/website/docs/d/batch_pool.html.markdown @@ -185,6 +185,6 @@ A `network_security_group_rules` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Batch Pool. diff --git a/website/docs/d/billing_enrollment_account_scope.html.markdown b/website/docs/d/billing_enrollment_account_scope.html.markdown index d401c99aadf1..8703b20d7d88 100644 --- a/website/docs/d/billing_enrollment_account_scope.html.markdown +++ b/website/docs/d/billing_enrollment_account_scope.html.markdown @@ -39,6 +39,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Enrollment Account Billing Scope. diff --git a/website/docs/d/billing_mca_account_scope.html.markdown b/website/docs/d/billing_mca_account_scope.html.markdown index cc697d507eaa..7d6419389098 100644 --- a/website/docs/d/billing_mca_account_scope.html.markdown +++ b/website/docs/d/billing_mca_account_scope.html.markdown @@ -42,6 +42,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Billing Scope. diff --git a/website/docs/d/billing_mpa_account_scope.html.markdown b/website/docs/d/billing_mpa_account_scope.html.markdown index 292eb48d0f80..700a7c7d717a 100644 --- a/website/docs/d/billing_mpa_account_scope.html.markdown +++ b/website/docs/d/billing_mpa_account_scope.html.markdown @@ -39,6 +39,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Billing Scope. diff --git a/website/docs/d/blueprint_definition.html.markdown b/website/docs/d/blueprint_definition.html.markdown index bdeaa7049556..92b63ea85be3 100644 --- a/website/docs/d/blueprint_definition.html.markdown +++ b/website/docs/d/blueprint_definition.html.markdown @@ -53,6 +53,6 @@ data "azurerm_blueprint_definition" "example" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Blueprint Published Version. diff --git a/website/docs/d/blueprint_published_version.html.markdown b/website/docs/d/blueprint_published_version.html.markdown index ba302cb0bfa5..e8f726c8bb94 100644 --- a/website/docs/d/blueprint_published_version.html.markdown +++ b/website/docs/d/blueprint_published_version.html.markdown @@ -48,6 +48,6 @@ data "azurerm_blueprint_published_version" "test" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Blueprint Published Version. diff --git a/website/docs/d/cdn_frontdoor_endpoint.html.markdown b/website/docs/d/cdn_frontdoor_endpoint.html.markdown index 1b7748f09c58..fe44312a1d67 100644 --- a/website/docs/d/cdn_frontdoor_endpoint.html.markdown +++ b/website/docs/d/cdn_frontdoor_endpoint.html.markdown @@ -44,6 +44,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Endpoint. diff --git a/website/docs/d/cdn_frontdoor_origin_group.html.markdown b/website/docs/d/cdn_frontdoor_origin_group.html.markdown index 2ad0c8a6eff9..1ba4a0731804 100644 --- a/website/docs/d/cdn_frontdoor_origin_group.html.markdown +++ b/website/docs/d/cdn_frontdoor_origin_group.html.markdown @@ -70,6 +70,6 @@ A `load_balancing` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Origin Group. diff --git a/website/docs/d/cdn_frontdoor_profile.html.markdown b/website/docs/d/cdn_frontdoor_profile.html.markdown index 3b772f679c4c..053c030b75e1 100644 --- a/website/docs/d/cdn_frontdoor_profile.html.markdown +++ b/website/docs/d/cdn_frontdoor_profile.html.markdown @@ -43,6 +43,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Profile. diff --git a/website/docs/d/cdn_frontdoor_rule_set.html.markdown b/website/docs/d/cdn_frontdoor_rule_set.html.markdown index afa6aec10a81..edee3c81357b 100644 --- a/website/docs/d/cdn_frontdoor_rule_set.html.markdown +++ b/website/docs/d/cdn_frontdoor_rule_set.html.markdown @@ -40,6 +40,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Rule Set. diff --git a/website/docs/d/cdn_profile.html.markdown b/website/docs/d/cdn_profile.html.markdown index 5f0578e34aaf..1ce7d64fc988 100644 --- a/website/docs/d/cdn_profile.html.markdown +++ b/website/docs/d/cdn_profile.html.markdown @@ -39,6 +39,6 @@ output "cdn_profile_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the CDN Profile. diff --git a/website/docs/d/client_config.html.markdown b/website/docs/d/client_config.html.markdown index ce6aa6825cc3..f0b6e5e61289 100644 --- a/website/docs/d/client_config.html.markdown +++ b/website/docs/d/client_config.html.markdown @@ -36,6 +36,6 @@ There are no arguments available for this data source. ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the client config. diff --git a/website/docs/d/cognitive_account.html.markdown b/website/docs/d/cognitive_account.html.markdown index ad28af0c926d..f3ae16d33f9b 100644 --- a/website/docs/d/cognitive_account.html.markdown +++ b/website/docs/d/cognitive_account.html.markdown @@ -52,6 +52,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Cognitive Services Account. diff --git a/website/docs/d/confidential_ledger.html.markdown b/website/docs/d/confidential_ledger.html.markdown index a7b75111e1ca..71cb3197f2f8 100644 --- a/website/docs/d/confidential_ledger.html.markdown +++ b/website/docs/d/confidential_ledger.html.markdown @@ -67,6 +67,6 @@ A `certificate_based_security_principal` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Confidential Ledger. diff --git a/website/docs/d/consumption_budget_resource_group.html.markdown b/website/docs/d/consumption_budget_resource_group.html.markdown index 2c7b4d7bc1b9..d857df52a1e8 100644 --- a/website/docs/d/consumption_budget_resource_group.html.markdown +++ b/website/docs/d/consumption_budget_resource_group.html.markdown @@ -115,6 +115,6 @@ A `time_period` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Consumption Budget. diff --git a/website/docs/d/consumption_budget_subscription.html.markdown b/website/docs/d/consumption_budget_subscription.html.markdown index 0d9d43c1c720..c77711308687 100644 --- a/website/docs/d/consumption_budget_subscription.html.markdown +++ b/website/docs/d/consumption_budget_subscription.html.markdown @@ -115,6 +115,6 @@ A `time_period` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Consumption Budget. diff --git a/website/docs/d/container_group.html.markdown b/website/docs/d/container_group.html.markdown index 8391696d4da1..f89f0ca12813 100644 --- a/website/docs/d/container_group.html.markdown +++ b/website/docs/d/container_group.html.markdown @@ -55,6 +55,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Container Group instance. diff --git a/website/docs/d/container_registry.html.markdown b/website/docs/d/container_registry.html.markdown index d4e92769c114..f7fb6c4b0d40 100644 --- a/website/docs/d/container_registry.html.markdown +++ b/website/docs/d/container_registry.html.markdown @@ -53,6 +53,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Container Registry. diff --git a/website/docs/d/container_registry_scope_map.html.markdown b/website/docs/d/container_registry_scope_map.html.markdown index 02caefa3db65..3591827a07a9 100644 --- a/website/docs/d/container_registry_scope_map.html.markdown +++ b/website/docs/d/container_registry_scope_map.html.markdown @@ -41,6 +41,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Container Registry scope map. diff --git a/website/docs/d/container_registry_token.html.markdown b/website/docs/d/container_registry_token.html.markdown index 2ff6816f4335..9ca473d4c0c6 100644 --- a/website/docs/d/container_registry_token.html.markdown +++ b/website/docs/d/container_registry_token.html.markdown @@ -43,6 +43,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Container Registry token. diff --git a/website/docs/d/cosmosdb_account.html.markdown b/website/docs/d/cosmosdb_account.html.markdown index 5ac2f7f4a8fb..7b9350ef4b1e 100644 --- a/website/docs/d/cosmosdb_account.html.markdown +++ b/website/docs/d/cosmosdb_account.html.markdown @@ -95,6 +95,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the CosmosDB Account. diff --git a/website/docs/d/cosmosdb_mongo_database.html.markdown b/website/docs/d/cosmosdb_mongo_database.html.markdown index aaf5ccae3e06..fd02438b4b41 100644 --- a/website/docs/d/cosmosdb_mongo_database.html.markdown +++ b/website/docs/d/cosmosdb_mongo_database.html.markdown @@ -44,6 +44,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Cosmos Mongo Database. diff --git a/website/docs/d/cosmosdb_restorable_database_accounts.html.markdown b/website/docs/d/cosmosdb_restorable_database_accounts.html.markdown index b2a4a37fecbd..a484bd154d51 100644 --- a/website/docs/d/cosmosdb_restorable_database_accounts.html.markdown +++ b/website/docs/d/cosmosdb_restorable_database_accounts.html.markdown @@ -67,6 +67,6 @@ An `restorable_locations` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Cosmos DB Restorable Database Accounts. diff --git a/website/docs/d/data_factory.html.markdown b/website/docs/d/data_factory.html.markdown index 4e4631da6ef4..42e474c60fae 100644 --- a/website/docs/d/data_factory.html.markdown +++ b/website/docs/d/data_factory.html.markdown @@ -93,6 +93,6 @@ A `vsts_configuration` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: - `read` - (Defaults to 5 minutes) Used when retrieving the Azure Data Factory. diff --git a/website/docs/d/data_protection_backup_vault.html.markdown b/website/docs/d/data_protection_backup_vault.html.markdown index 3a699f539e7f..01469def7999 100644 --- a/website/docs/d/data_protection_backup_vault.html.markdown +++ b/website/docs/d/data_protection_backup_vault.html.markdown @@ -59,6 +59,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Vault. diff --git a/website/docs/d/data_share.html.markdown b/website/docs/d/data_share.html.markdown index b1d927042f2f..8173e4ccee44 100644 --- a/website/docs/d/data_share.html.markdown +++ b/website/docs/d/data_share.html.markdown @@ -66,6 +66,6 @@ A `snapshot_schedule` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share. diff --git a/website/docs/d/data_share_account.html.markdown b/website/docs/d/data_share_account.html.markdown index 9d7e545241b1..544cb492c463 100644 --- a/website/docs/d/data_share_account.html.markdown +++ b/website/docs/d/data_share_account.html.markdown @@ -57,6 +57,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Account. diff --git a/website/docs/d/data_share_dataset_blob_storage.html.markdown b/website/docs/d/data_share_dataset_blob_storage.html.markdown index e42b1f87a972..33448f7f2ad8 100644 --- a/website/docs/d/data_share_dataset_blob_storage.html.markdown +++ b/website/docs/d/data_share_dataset_blob_storage.html.markdown @@ -63,6 +63,6 @@ A `storage_account` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Blob Storage Dataset. diff --git a/website/docs/d/data_share_dataset_data_lake_gen2.html.markdown b/website/docs/d/data_share_dataset_data_lake_gen2.html.markdown index 8ab6e8b3f8a5..016bf4c85735 100644 --- a/website/docs/d/data_share_dataset_data_lake_gen2.html.markdown +++ b/website/docs/d/data_share_dataset_data_lake_gen2.html.markdown @@ -53,6 +53,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Data Lake Gen2 Dataset. diff --git a/website/docs/d/data_share_dataset_kusto_cluster.html.markdown b/website/docs/d/data_share_dataset_kusto_cluster.html.markdown index 83ba3c06b0a7..9888e350a2dc 100644 --- a/website/docs/d/data_share_dataset_kusto_cluster.html.markdown +++ b/website/docs/d/data_share_dataset_kusto_cluster.html.markdown @@ -49,6 +49,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Kusto Cluster Dataset. diff --git a/website/docs/d/data_share_dataset_kusto_database.html.markdown b/website/docs/d/data_share_dataset_kusto_database.html.markdown index 09622d62f4b4..f22bc73cfaa9 100644 --- a/website/docs/d/data_share_dataset_kusto_database.html.markdown +++ b/website/docs/d/data_share_dataset_kusto_database.html.markdown @@ -49,6 +49,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Kusto Database Dataset. diff --git a/website/docs/d/database_migration_project.html.markdown b/website/docs/d/database_migration_project.html.markdown index ad50518eaa33..8263d293bfe8 100644 --- a/website/docs/d/database_migration_project.html.markdown +++ b/website/docs/d/database_migration_project.html.markdown @@ -55,6 +55,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management API. diff --git a/website/docs/d/database_migration_service.html.markdown b/website/docs/d/database_migration_service.html.markdown index 6c2d6a31aa2f..98e6d7c9e7c7 100644 --- a/website/docs/d/database_migration_service.html.markdown +++ b/website/docs/d/database_migration_service.html.markdown @@ -53,6 +53,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the API Management API. diff --git a/website/docs/d/databricks_workspace.html.markdown b/website/docs/d/databricks_workspace.html.markdown index 1e8b63c5ff08..27bce58b3966 100644 --- a/website/docs/d/databricks_workspace.html.markdown +++ b/website/docs/d/databricks_workspace.html.markdown @@ -44,6 +44,6 @@ output "databricks_workspace_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Databricks Workspace. diff --git a/website/docs/d/databricks_workspace_private_endpoint_connection.html.markdown b/website/docs/d/databricks_workspace_private_endpoint_connection.html.markdown index bc2751f58566..a3166a8eb107 100644 --- a/website/docs/d/databricks_workspace_private_endpoint_connection.html.markdown +++ b/website/docs/d/databricks_workspace_private_endpoint_connection.html.markdown @@ -53,6 +53,6 @@ A `connections` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Databricks Workspace Private Endpoint Connection. diff --git a/website/docs/d/dedicated_host.html.markdown b/website/docs/d/dedicated_host.html.markdown index 6eb75584c198..cb33dec17674 100644 --- a/website/docs/d/dedicated_host.html.markdown +++ b/website/docs/d/dedicated_host.html.markdown @@ -47,6 +47,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Dedicated Host. diff --git a/website/docs/d/dedicated_host_group.html.markdown b/website/docs/d/dedicated_host_group.html.markdown index d234a659bb3f..20dae8782846 100644 --- a/website/docs/d/dedicated_host_group.html.markdown +++ b/website/docs/d/dedicated_host_group.html.markdown @@ -50,6 +50,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Dedicated Host Group. diff --git a/website/docs/d/dev_test_lab.html.markdown b/website/docs/d/dev_test_lab.html.markdown index bef94e5266de..88656a6a3a7e 100644 --- a/website/docs/d/dev_test_lab.html.markdown +++ b/website/docs/d/dev_test_lab.html.markdown @@ -53,6 +53,6 @@ output "unique_identifier" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Dev Test Lab. diff --git a/website/docs/d/dev_test_virtual_network.html.markdown b/website/docs/d/dev_test_virtual_network.html.markdown index 4ac860183813..693a4d1fa9fc 100644 --- a/website/docs/d/dev_test_virtual_network.html.markdown +++ b/website/docs/d/dev_test_virtual_network.html.markdown @@ -62,6 +62,6 @@ An `subnets_override` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Dev Test Lab Virtual Network. diff --git a/website/docs/d/digital_twins_instance.html.markdown b/website/docs/d/digital_twins_instance.html.markdown index a665f3002b37..b0c6cbe3e56a 100644 --- a/website/docs/d/digital_twins_instance.html.markdown +++ b/website/docs/d/digital_twins_instance.html.markdown @@ -49,6 +49,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Digital Twins instance. diff --git a/website/docs/d/disk_access.html.markdown b/website/docs/d/disk_access.html.markdown index 02ffcb018bc0..8c9c01499944 100644 --- a/website/docs/d/disk_access.html.markdown +++ b/website/docs/d/disk_access.html.markdown @@ -43,6 +43,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Disk. diff --git a/website/docs/d/disk_encryption_set.html.markdown b/website/docs/d/disk_encryption_set.html.markdown index 9727c4dd6e3e..be61ff1ca9a5 100644 --- a/website/docs/d/disk_encryption_set.html.markdown +++ b/website/docs/d/disk_encryption_set.html.markdown @@ -32,6 +32,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Disk Encryption Set. diff --git a/website/docs/d/dns_zone.html.markdown b/website/docs/d/dns_zone.html.markdown index a44ce44651b7..4310dd339764 100644 --- a/website/docs/d/dns_zone.html.markdown +++ b/website/docs/d/dns_zone.html.markdown @@ -42,6 +42,6 @@ in your subscription that matches `name` will be returned. ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the DNS Zone. diff --git a/website/docs/d/elastic_cloud_elasticsearch.html.markdown b/website/docs/d/elastic_cloud_elasticsearch.html.markdown index c570a1d254d9..77fd0f2480fc 100644 --- a/website/docs/d/elastic_cloud_elasticsearch.html.markdown +++ b/website/docs/d/elastic_cloud_elasticsearch.html.markdown @@ -91,6 +91,6 @@ The `logs` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Elasticsearch. diff --git a/website/docs/d/eventgrid_domain.html.markdown b/website/docs/d/eventgrid_domain.html.markdown index 3867543f999b..08bd714a9ff0 100644 --- a/website/docs/d/eventgrid_domain.html.markdown +++ b/website/docs/d/eventgrid_domain.html.markdown @@ -94,6 +94,6 @@ A `inbound_ip_rule` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventGrid Domain. diff --git a/website/docs/d/eventgrid_domain_topic.html.markdown b/website/docs/d/eventgrid_domain_topic.html.markdown index 19e12deef2e1..9da4904c8a4c 100644 --- a/website/docs/d/eventgrid_domain_topic.html.markdown +++ b/website/docs/d/eventgrid_domain_topic.html.markdown @@ -40,6 +40,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventGrid Domain Topic. diff --git a/website/docs/d/eventgrid_system_topic.html.markdown b/website/docs/d/eventgrid_system_topic.html.markdown index 09f4aeecb4ef..7028b14a94d3 100644 --- a/website/docs/d/eventgrid_system_topic.html.markdown +++ b/website/docs/d/eventgrid_system_topic.html.markdown @@ -60,6 +60,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventGrid System Topic. diff --git a/website/docs/d/eventgrid_topic.html.markdown b/website/docs/d/eventgrid_topic.html.markdown index 467933586d83..9c63cb029950 100644 --- a/website/docs/d/eventgrid_topic.html.markdown +++ b/website/docs/d/eventgrid_topic.html.markdown @@ -42,6 +42,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventGrid Topic. diff --git a/website/docs/d/eventhub.html.markdown b/website/docs/d/eventhub.html.markdown index a905a108e885..1cd9c6480bc2 100644 --- a/website/docs/d/eventhub.html.markdown +++ b/website/docs/d/eventhub.html.markdown @@ -46,6 +46,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventHub. diff --git a/website/docs/d/eventhub_authorization_rule.html.markdown b/website/docs/d/eventhub_authorization_rule.html.markdown index be910e7569fc..8c968cf3229a 100644 --- a/website/docs/d/eventhub_authorization_rule.html.markdown +++ b/website/docs/d/eventhub_authorization_rule.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventHub Authorization Rule. diff --git a/website/docs/d/eventhub_cluster.html.markdown b/website/docs/d/eventhub_cluster.html.markdown index fa886e75b9f9..a07addd45873 100644 --- a/website/docs/d/eventhub_cluster.html.markdown +++ b/website/docs/d/eventhub_cluster.html.markdown @@ -43,6 +43,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventHub Cluster. diff --git a/website/docs/d/eventhub_consumer_group.html.markdown b/website/docs/d/eventhub_consumer_group.html.markdown index 7bc01aa72526..eef982ea7173 100644 --- a/website/docs/d/eventhub_consumer_group.html.markdown +++ b/website/docs/d/eventhub_consumer_group.html.markdown @@ -41,6 +41,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventHub Consumer Group. diff --git a/website/docs/d/eventhub_namespace.html.markdown b/website/docs/d/eventhub_namespace.html.markdown index 1fcdee8ccdba..021f41d33556 100644 --- a/website/docs/d/eventhub_namespace.html.markdown +++ b/website/docs/d/eventhub_namespace.html.markdown @@ -69,6 +69,6 @@ The following attributes are exported only if there is an authorization rule nam ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the EventHub Namespace. diff --git a/website/docs/d/eventhub_namespace_authorization_rule.html.markdown b/website/docs/d/eventhub_namespace_authorization_rule.html.markdown index 600fe0d3dd7a..6b78eec5fddf 100644 --- a/website/docs/d/eventhub_namespace_authorization_rule.html.markdown +++ b/website/docs/d/eventhub_namespace_authorization_rule.html.markdown @@ -60,6 +60,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Authorization Rule. diff --git a/website/docs/d/express_route_circuit.html.markdown b/website/docs/d/express_route_circuit.html.markdown index 8747dca65e90..6e24a21829a1 100644 --- a/website/docs/d/express_route_circuit.html.markdown +++ b/website/docs/d/express_route_circuit.html.markdown @@ -75,6 +75,6 @@ output "service_key" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the ExpressRoute circuit. diff --git a/website/docs/d/extended_locations.html.markdown b/website/docs/d/extended_locations.html.markdown index 6106d8fadfc8..240c8eafb489 100644 --- a/website/docs/d/extended_locations.html.markdown +++ b/website/docs/d/extended_locations.html.markdown @@ -30,6 +30,6 @@ data "azurerm_extended_locations" "example" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Extended Locations. diff --git a/website/docs/d/firewall.html.markdown b/website/docs/d/firewall.html.markdown index bef6b1fb5478..796b5eb26ef8 100644 --- a/website/docs/d/firewall.html.markdown +++ b/website/docs/d/firewall.html.markdown @@ -92,6 +92,6 @@ A `virtual_hub` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Firewall. diff --git a/website/docs/d/firewall_policy.html.markdown b/website/docs/d/firewall_policy.html.markdown index 4725db5679d7..bba255544ec0 100644 --- a/website/docs/d/firewall_policy.html.markdown +++ b/website/docs/d/firewall_policy.html.markdown @@ -41,6 +41,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Firewall Policy. diff --git a/website/docs/d/function_app.html.markdown b/website/docs/d/function_app.html.markdown index b3cfa7acf6b4..84856cfab080 100644 --- a/website/docs/d/function_app.html.markdown +++ b/website/docs/d/function_app.html.markdown @@ -180,6 +180,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Function App. diff --git a/website/docs/d/hdinsight_cluster.html.markdown b/website/docs/d/hdinsight_cluster.html.markdown index bf89bbe95fe3..7357bcd61c7c 100644 --- a/website/docs/d/hdinsight_cluster.html.markdown +++ b/website/docs/d/hdinsight_cluster.html.markdown @@ -68,6 +68,6 @@ A `gateway` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the HDInsight Cluster. diff --git a/website/docs/d/healthcare_dicom.html.markdown b/website/docs/d/healthcare_dicom.html.markdown index 870218d21c5b..d8d82ddf0df0 100644 --- a/website/docs/d/healthcare_dicom.html.markdown +++ b/website/docs/d/healthcare_dicom.html.markdown @@ -53,6 +53,6 @@ An `authentication` supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Healthcare DICOM Service. diff --git a/website/docs/d/healthcare_fhir_service.html.markdown b/website/docs/d/healthcare_fhir_service.html.markdown index f2e915a6fea4..29b55f6e060f 100644 --- a/website/docs/d/healthcare_fhir_service.html.markdown +++ b/website/docs/d/healthcare_fhir_service.html.markdown @@ -82,7 +82,7 @@ An `authentication` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Healthcare FHIR Service. diff --git a/website/docs/d/healthcare_service.html.markdown b/website/docs/d/healthcare_service.html.markdown index 0375e39ad37a..bddc9593f79b 100644 --- a/website/docs/d/healthcare_service.html.markdown +++ b/website/docs/d/healthcare_service.html.markdown @@ -64,6 +64,6 @@ A `cors_configuration` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Healthcare Service. diff --git a/website/docs/d/healthcare_workspace.html.markdown b/website/docs/d/healthcare_workspace.html.markdown index b0636488a5bd..7e923d23de2a 100644 --- a/website/docs/d/healthcare_workspace.html.markdown +++ b/website/docs/d/healthcare_workspace.html.markdown @@ -41,6 +41,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Healthcare Workspace. diff --git a/website/docs/d/image.html.markdown b/website/docs/d/image.html.markdown index c8c240fbdb04..ac804067f350 100644 --- a/website/docs/d/image.html.markdown +++ b/website/docs/d/image.html.markdown @@ -59,6 +59,6 @@ output "image_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Image. diff --git a/website/docs/d/images.html.markdown b/website/docs/d/images.html.markdown index 46d20983e50b..75359824136d 100644 --- a/website/docs/d/images.html.markdown +++ b/website/docs/d/images.html.markdown @@ -81,6 +81,6 @@ The `data_disk` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Images within a Resource Group. diff --git a/website/docs/d/iothub.html.markdown b/website/docs/d/iothub.html.markdown index 6aa3198c1636..c39c3dd672f3 100644 --- a/website/docs/d/iothub.html.markdown +++ b/website/docs/d/iothub.html.markdown @@ -45,6 +45,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the IoTHub. diff --git a/website/docs/d/iothub_dps.html.markdown b/website/docs/d/iothub_dps.html.markdown index fdb5829cad44..b7250c087a1e 100644 --- a/website/docs/d/iothub_dps.html.markdown +++ b/website/docs/d/iothub_dps.html.markdown @@ -45,6 +45,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the IoT Hub Device Provisioning Service. diff --git a/website/docs/d/iothub_dps_shared_access_policy.html.markdown b/website/docs/d/iothub_dps_shared_access_policy.html.markdown index 286d5623bd9c..838cc2d87d53 100644 --- a/website/docs/d/iothub_dps_shared_access_policy.html.markdown +++ b/website/docs/d/iothub_dps_shared_access_policy.html.markdown @@ -46,6 +46,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the IotHub Device Provisioning Service Shared Access Policy. diff --git a/website/docs/d/iothub_shared_access_policy.html.markdown b/website/docs/d/iothub_shared_access_policy.html.markdown index e770cf8ed45f..6b89d2c3dd7a 100644 --- a/website/docs/d/iothub_shared_access_policy.html.markdown +++ b/website/docs/d/iothub_shared_access_policy.html.markdown @@ -46,6 +46,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the IotHub Shared Access Policy. diff --git a/website/docs/d/ip_group.html.markdown b/website/docs/d/ip_group.html.markdown index cb8ca5054e5b..f2d63686504f 100644 --- a/website/docs/d/ip_group.html.markdown +++ b/website/docs/d/ip_group.html.markdown @@ -43,6 +43,6 @@ output "cidrs" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the IP Group. diff --git a/website/docs/d/key_vault.html.markdown b/website/docs/d/key_vault.html.markdown index c2f71e05d3f2..82f33335386d 100644 --- a/website/docs/d/key_vault.html.markdown +++ b/website/docs/d/key_vault.html.markdown @@ -77,6 +77,6 @@ A `access_policy` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault. diff --git a/website/docs/d/key_vault_access_policy.html.markdown b/website/docs/d/key_vault_access_policy.html.markdown index 11f0b300a459..266893c38ede 100644 --- a/website/docs/d/key_vault_access_policy.html.markdown +++ b/website/docs/d/key_vault_access_policy.html.markdown @@ -43,6 +43,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Access Policy. diff --git a/website/docs/d/key_vault_certificate.html.markdown b/website/docs/d/key_vault_certificate.html.markdown index 6c73cc45add3..53ed08a96032 100644 --- a/website/docs/d/key_vault_certificate.html.markdown +++ b/website/docs/d/key_vault_certificate.html.markdown @@ -145,6 +145,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Certificate. diff --git a/website/docs/d/key_vault_certificate_data.html.markdown b/website/docs/d/key_vault_certificate_data.html.markdown index bd5fe8b1490d..c078bca04588 100644 --- a/website/docs/d/key_vault_certificate_data.html.markdown +++ b/website/docs/d/key_vault_certificate_data.html.markdown @@ -65,6 +65,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Certificate. diff --git a/website/docs/d/key_vault_certificate_issuer.html.markdown b/website/docs/d/key_vault_certificate_issuer.html.markdown index 7312ef541440..473cfe6e38f0 100644 --- a/website/docs/d/key_vault_certificate_issuer.html.markdown +++ b/website/docs/d/key_vault_certificate_issuer.html.markdown @@ -64,6 +64,6 @@ An `admin` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Certificate Issuer. diff --git a/website/docs/d/key_vault_encrypted_value.html.markdown b/website/docs/d/key_vault_encrypted_value.html.markdown index a222feeed8bb..467af004cd1e 100644 --- a/website/docs/d/key_vault_encrypted_value.html.markdown +++ b/website/docs/d/key_vault_encrypted_value.html.markdown @@ -58,6 +58,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when encrypting/decrypting this value. diff --git a/website/docs/d/key_vault_key.html.markdown b/website/docs/d/key_vault_key.html.markdown index a7817a800247..d52fd7e1bdc5 100644 --- a/website/docs/d/key_vault_key.html.markdown +++ b/website/docs/d/key_vault_key.html.markdown @@ -76,6 +76,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Key. diff --git a/website/docs/d/key_vault_managed_hardware_security_module.html.markdown b/website/docs/d/key_vault_managed_hardware_security_module.html.markdown index 363cbb32038a..6c6b6ef68cb3 100644 --- a/website/docs/d/key_vault_managed_hardware_security_module.html.markdown +++ b/website/docs/d/key_vault_managed_hardware_security_module.html.markdown @@ -55,6 +55,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Managed Hardware Security Module. diff --git a/website/docs/d/key_vault_secret.html.markdown b/website/docs/d/key_vault_secret.html.markdown index 3a2b718fc8ea..6b2b5dddfb40 100644 --- a/website/docs/d/key_vault_secret.html.markdown +++ b/website/docs/d/key_vault_secret.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Secret. diff --git a/website/docs/d/key_vault_secrets.html.markdown b/website/docs/d/key_vault_secrets.html.markdown index 304201aba2bd..f8214089f73d 100644 --- a/website/docs/d/key_vault_secrets.html.markdown +++ b/website/docs/d/key_vault_secrets.html.markdown @@ -42,6 +42,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Secret. diff --git a/website/docs/d/kubernetes_cluster.html.markdown b/website/docs/d/kubernetes_cluster.html.markdown index 27ce0292f3fa..467dc52efba5 100644 --- a/website/docs/d/kubernetes_cluster.html.markdown +++ b/website/docs/d/kubernetes_cluster.html.markdown @@ -347,6 +347,6 @@ A `ssh_key` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Managed Kubernetes Cluster (AKS). diff --git a/website/docs/d/kubernetes_cluster_node_pool.html.markdown b/website/docs/d/kubernetes_cluster_node_pool.html.markdown index 6af43f09c91c..08c58b7e7198 100644 --- a/website/docs/d/kubernetes_cluster_node_pool.html.markdown +++ b/website/docs/d/kubernetes_cluster_node_pool.html.markdown @@ -99,6 +99,6 @@ A `upgrade_settings` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Kubernetes Cluster Node Pool. diff --git a/website/docs/d/kubernetes_service_versions.html.markdown b/website/docs/d/kubernetes_service_versions.html.markdown index 6b016f6dd621..6d4ae8dbb368 100644 --- a/website/docs/d/kubernetes_service_versions.html.markdown +++ b/website/docs/d/kubernetes_service_versions.html.markdown @@ -42,6 +42,6 @@ output "latest_version" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the versions. diff --git a/website/docs/d/kusto_cluster.html.markdown b/website/docs/d/kusto_cluster.html.markdown index b9807054fb7d..cb0d71087ad8 100644 --- a/website/docs/d/kusto_cluster.html.markdown +++ b/website/docs/d/kusto_cluster.html.markdown @@ -39,6 +39,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Kusto Cluster. diff --git a/website/docs/d/kusto_database.html.markdown b/website/docs/d/kusto_database.html.markdown index 1e4166816c45..f4ced2c67b52 100644 --- a/website/docs/d/kusto_database.html.markdown +++ b/website/docs/d/kusto_database.html.markdown @@ -46,6 +46,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Kusto Database. diff --git a/website/docs/d/lb.html.markdown b/website/docs/d/lb.html.markdown index 30d8ea49ee77..83203a89549c 100644 --- a/website/docs/d/lb.html.markdown +++ b/website/docs/d/lb.html.markdown @@ -63,6 +63,6 @@ A `frontend_ip_configuration` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Load Balancer. diff --git a/website/docs/d/lb_backend_address_pool.html.markdown b/website/docs/d/lb_backend_address_pool.html.markdown index 3c17aa6ea252..2e0d1c047394 100644 --- a/website/docs/d/lb_backend_address_pool.html.markdown +++ b/website/docs/d/lb_backend_address_pool.html.markdown @@ -81,6 +81,6 @@ A `inbound_nat_rule_port_mapping` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Backend Address Pool. diff --git a/website/docs/d/lb_rule.html.markdown b/website/docs/d/lb_rule.html.markdown index 6bd6e1642a5f..1d41c362434d 100644 --- a/website/docs/d/lb_rule.html.markdown +++ b/website/docs/d/lb_rule.html.markdown @@ -69,6 +69,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Load Balancer Rule. diff --git a/website/docs/d/linux_function_app.html.markdown b/website/docs/d/linux_function_app.html.markdown index 62040425a9fb..b3a9ef2d1cb4 100644 --- a/website/docs/d/linux_function_app.html.markdown +++ b/website/docs/d/linux_function_app.html.markdown @@ -437,6 +437,6 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 25 minutes) Used when retrieving the Linux Function App. diff --git a/website/docs/d/linux_web_app.html.markdown b/website/docs/d/linux_web_app.html.markdown index 6507ce5dbf55..9ad812f20ce8 100644 --- a/website/docs/d/linux_web_app.html.markdown +++ b/website/docs/d/linux_web_app.html.markdown @@ -487,6 +487,6 @@ A `twitter` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Linux Web App. diff --git a/website/docs/d/local_network_gateway.html.markdown b/website/docs/d/local_network_gateway.html.markdown index c96e34a8a3ba..ef66afdfd78d 100644 --- a/website/docs/d/local_network_gateway.html.markdown +++ b/website/docs/d/local_network_gateway.html.markdown @@ -61,6 +61,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Local Network Gateway. diff --git a/website/docs/d/log_analytics_workspace.html.markdown b/website/docs/d/log_analytics_workspace.html.markdown index 246f64054318..43c101d3aa65 100644 --- a/website/docs/d/log_analytics_workspace.html.markdown +++ b/website/docs/d/log_analytics_workspace.html.markdown @@ -52,6 +52,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Workspace. diff --git a/website/docs/d/logic_app_integration_account.html.markdown b/website/docs/d/logic_app_integration_account.html.markdown index eb6dcd732f90..ae2a057602ea 100644 --- a/website/docs/d/logic_app_integration_account.html.markdown +++ b/website/docs/d/logic_app_integration_account.html.markdown @@ -45,6 +45,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account. diff --git a/website/docs/d/logic_app_standard.html.markdown b/website/docs/d/logic_app_standard.html.markdown index 4ca1a40eb894..d54e9d415f73 100644 --- a/website/docs/d/logic_app_standard.html.markdown +++ b/website/docs/d/logic_app_standard.html.markdown @@ -53,6 +53,6 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Workflow. diff --git a/website/docs/d/logic_app_workflow.html.markdown b/website/docs/d/logic_app_workflow.html.markdown index 516f482aaef3..5aa4460b1953 100644 --- a/website/docs/d/logic_app_workflow.html.markdown +++ b/website/docs/d/logic_app_workflow.html.markdown @@ -75,6 +75,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Workflow. diff --git a/website/docs/d/machine_learning_workspace.html.markdown b/website/docs/d/machine_learning_workspace.html.markdown index b99e11ce5358..8f12aa1f990a 100644 --- a/website/docs/d/machine_learning_workspace.html.markdown +++ b/website/docs/d/machine_learning_workspace.html.markdown @@ -61,6 +61,6 @@ The `identity` block exports the following attributes: ### Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Machine Learning Workspace. diff --git a/website/docs/d/maintenance_configuration.html.markdown b/website/docs/d/maintenance_configuration.html.markdown index 349c114875b1..0f32f1448a80 100644 --- a/website/docs/d/maintenance_configuration.html.markdown +++ b/website/docs/d/maintenance_configuration.html.markdown @@ -61,6 +61,6 @@ A `window` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Maintenance Configuration. diff --git a/website/docs/d/managed_api.html.markdown b/website/docs/d/managed_api.html.markdown index 85d9116e8327..5ae4f497409b 100644 --- a/website/docs/d/managed_api.html.markdown +++ b/website/docs/d/managed_api.html.markdown @@ -39,6 +39,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Managed API. diff --git a/website/docs/d/managed_application_definition.html.markdown b/website/docs/d/managed_application_definition.html.markdown index 1e5fb438de92..0287b9170ffd 100644 --- a/website/docs/d/managed_application_definition.html.markdown +++ b/website/docs/d/managed_application_definition.html.markdown @@ -45,6 +45,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Managed Application Definition. diff --git a/website/docs/d/managed_disk.html.markdown b/website/docs/d/managed_disk.html.markdown index b2e15348d780..6fcec767c693 100644 --- a/website/docs/d/managed_disk.html.markdown +++ b/website/docs/d/managed_disk.html.markdown @@ -87,6 +87,6 @@ The `key_encryption_key` block supports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Managed Disk. diff --git a/website/docs/d/management_group.html.markdown b/website/docs/d/management_group.html.markdown index 584226f16f57..5fe68cdaabd7 100644 --- a/website/docs/d/management_group.html.markdown +++ b/website/docs/d/management_group.html.markdown @@ -44,6 +44,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Management Group. diff --git a/website/docs/d/management_group_template_deployment.html.markdown b/website/docs/d/management_group_template_deployment.html.markdown index def364018765..282805fb141b 100644 --- a/website/docs/d/management_group_template_deployment.html.markdown +++ b/website/docs/d/management_group_template_deployment.html.markdown @@ -45,6 +45,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Management Group Template Deployment. diff --git a/website/docs/d/maps_account.html.markdown b/website/docs/d/maps_account.html.markdown index cb5c4ce725f6..674b43faa35a 100644 --- a/website/docs/d/maps_account.html.markdown +++ b/website/docs/d/maps_account.html.markdown @@ -44,6 +44,6 @@ output "maps_account_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Maps Account. diff --git a/website/docs/d/mariadb_server.html.markdown b/website/docs/d/mariadb_server.html.markdown index fc70312ae700..a7ae4c818826 100644 --- a/website/docs/d/mariadb_server.html.markdown +++ b/website/docs/d/mariadb_server.html.markdown @@ -66,6 +66,6 @@ A `storage_profile` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the MariaDB Server. diff --git a/website/docs/d/monitor_action_group.html.markdown b/website/docs/d/monitor_action_group.html.markdown index 701b8ad7a1d1..9bdbf13cf3a4 100644 --- a/website/docs/d/monitor_action_group.html.markdown +++ b/website/docs/d/monitor_action_group.html.markdown @@ -144,6 +144,6 @@ output "action_group_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Action Group. diff --git a/website/docs/d/monitor_diagnostic_categories.html.markdown b/website/docs/d/monitor_diagnostic_categories.html.markdown index 6a594a63c42b..fa199f97b8e9 100644 --- a/website/docs/d/monitor_diagnostic_categories.html.markdown +++ b/website/docs/d/monitor_diagnostic_categories.html.markdown @@ -38,6 +38,6 @@ data "azurerm_monitor_diagnostic_categories" "example" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Monitor Diagnostics Categories. diff --git a/website/docs/d/monitor_log_profile.html.markdown b/website/docs/d/monitor_log_profile.html.markdown index c67b6da7fd95..dd18990d25ea 100644 --- a/website/docs/d/monitor_log_profile.html.markdown +++ b/website/docs/d/monitor_log_profile.html.markdown @@ -51,6 +51,6 @@ The `retention_policy` block supports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Log Profile. diff --git a/website/docs/d/monitor_scheduled_query_rules_alert.html.markdown b/website/docs/d/monitor_scheduled_query_rules_alert.html.markdown index 195b949ed24c..1b87ba08a161 100644 --- a/website/docs/d/monitor_scheduled_query_rules_alert.html.markdown +++ b/website/docs/d/monitor_scheduled_query_rules_alert.html.markdown @@ -70,6 +70,6 @@ output "query_rule_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Environment. diff --git a/website/docs/d/monitor_scheduled_query_rules_log.html.markdown b/website/docs/d/monitor_scheduled_query_rules_log.html.markdown index db3527dec424..835baac3306d 100644 --- a/website/docs/d/monitor_scheduled_query_rules_log.html.markdown +++ b/website/docs/d/monitor_scheduled_query_rules_log.html.markdown @@ -53,6 +53,6 @@ output "query_rule_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Environment. diff --git a/website/docs/d/mssql_database.html.markdown b/website/docs/d/mssql_database.html.markdown index 7d630ab002dc..f01feaec542f 100644 --- a/website/docs/d/mssql_database.html.markdown +++ b/website/docs/d/mssql_database.html.markdown @@ -67,6 +67,6 @@ output "database_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SQL database. diff --git a/website/docs/d/mssql_elasticpool.html.markdown b/website/docs/d/mssql_elasticpool.html.markdown index e35eccb8a1f7..f47652505688 100644 --- a/website/docs/d/mssql_elasticpool.html.markdown +++ b/website/docs/d/mssql_elasticpool.html.markdown @@ -66,6 +66,6 @@ output "elasticpool_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SQL elastic pool. diff --git a/website/docs/d/mssql_managed_instance.html.markdown b/website/docs/d/mssql_managed_instance.html.markdown index ec479696bbc1..4765b12ed3a8 100644 --- a/website/docs/d/mssql_managed_instance.html.markdown +++ b/website/docs/d/mssql_managed_instance.html.markdown @@ -89,6 +89,6 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Microsoft SQL Managed Instance. diff --git a/website/docs/d/mssql_server.html.markdown b/website/docs/d/mssql_server.html.markdown index a41c29af9523..1b051019f4b3 100644 --- a/website/docs/d/mssql_server.html.markdown +++ b/website/docs/d/mssql_server.html.markdown @@ -65,6 +65,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Microsoft SQL Server. diff --git a/website/docs/d/mysql_flexible_server.html.markdown b/website/docs/d/mysql_flexible_server.html.markdown index 339c5cb2e4f9..4290c328aa1f 100644 --- a/website/docs/d/mysql_flexible_server.html.markdown +++ b/website/docs/d/mysql_flexible_server.html.markdown @@ -99,6 +99,6 @@ A `storage` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the MySQL Flexible Server. diff --git a/website/docs/d/mysql_server.html.markdown b/website/docs/d/mysql_server.html.markdown index 36e2e7f2624e..e0e0ad097835 100644 --- a/website/docs/d/mysql_server.html.markdown +++ b/website/docs/d/mysql_server.html.markdown @@ -96,6 +96,6 @@ A `threat_detection_policy` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the MySQL Server. diff --git a/website/docs/d/nat_gateway.html.markdown b/website/docs/d/nat_gateway.html.markdown index df84a0504a07..7ce4922e4272 100644 --- a/website/docs/d/nat_gateway.html.markdown +++ b/website/docs/d/nat_gateway.html.markdown @@ -42,6 +42,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the NAT Gateway. diff --git a/website/docs/d/netapp_account.html.markdown b/website/docs/d/netapp_account.html.markdown index 93970ecee6f9..563e579bfb9d 100644 --- a/website/docs/d/netapp_account.html.markdown +++ b/website/docs/d/netapp_account.html.markdown @@ -41,6 +41,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the NetApp Account. diff --git a/website/docs/d/netapp_pool.html.markdown b/website/docs/d/netapp_pool.html.markdown index cf80dd5ec889..361f02e65603 100644 --- a/website/docs/d/netapp_pool.html.markdown +++ b/website/docs/d/netapp_pool.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the NetApp Pool. diff --git a/website/docs/d/netapp_snapshot.html.markdown b/website/docs/d/netapp_snapshot.html.markdown index 3913dd4eaeec..ec87b779d59f 100644 --- a/website/docs/d/netapp_snapshot.html.markdown +++ b/website/docs/d/netapp_snapshot.html.markdown @@ -48,6 +48,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the NetApp Snapshot. diff --git a/website/docs/d/netapp_snapshot_policy.html.markdown b/website/docs/d/netapp_snapshot_policy.html.markdown index f6858c614dc0..6d73e9407150 100644 --- a/website/docs/d/netapp_snapshot_policy.html.markdown +++ b/website/docs/d/netapp_snapshot_policy.html.markdown @@ -128,6 +128,6 @@ A `weekly_schedule` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the NetApp Volume. diff --git a/website/docs/d/netapp_volume.html.markdown b/website/docs/d/netapp_volume.html.markdown index e27d6fa89b60..0856c0eba3dd 100644 --- a/website/docs/d/netapp_volume.html.markdown +++ b/website/docs/d/netapp_volume.html.markdown @@ -77,6 +77,6 @@ A `data_protection_replication` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the NetApp Volume. diff --git a/website/docs/d/network_ddos_protection_plan.html.markdown b/website/docs/d/network_ddos_protection_plan.html.markdown index afa2eefa32c8..85f18079b799 100644 --- a/website/docs/d/network_ddos_protection_plan.html.markdown +++ b/website/docs/d/network_ddos_protection_plan.html.markdown @@ -46,6 +46,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Protection Plan. diff --git a/website/docs/d/network_interface.html.markdown b/website/docs/d/network_interface.html.markdown index 7cbb049a2542..c73f7540c246 100644 --- a/website/docs/d/network_interface.html.markdown +++ b/website/docs/d/network_interface.html.markdown @@ -63,6 +63,6 @@ A `ip_configuration` block contains: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Network Interface. diff --git a/website/docs/d/network_security_group.html.markdown b/website/docs/d/network_security_group.html.markdown index aec53bf5da24..ebf4f24d384c 100644 --- a/website/docs/d/network_security_group.html.markdown +++ b/website/docs/d/network_security_group.html.markdown @@ -72,6 +72,6 @@ The `security_rule` block supports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Network Security Group. diff --git a/website/docs/d/network_service_tags.html.markdown b/website/docs/d/network_service_tags.html.markdown index b26c9c347136..b0cc83d9390a 100644 --- a/website/docs/d/network_service_tags.html.markdown +++ b/website/docs/d/network_service_tags.html.markdown @@ -54,6 +54,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Service Tags. diff --git a/website/docs/d/network_watcher.html.markdown b/website/docs/d/network_watcher.html.markdown index 022ede52b858..aeec10ba45ec 100644 --- a/website/docs/d/network_watcher.html.markdown +++ b/website/docs/d/network_watcher.html.markdown @@ -39,6 +39,6 @@ output "network_watcher_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Network Watcher. diff --git a/website/docs/d/notification_hub.html.markdown b/website/docs/d/notification_hub.html.markdown index 12c2c07d84de..ea7d22198033 100644 --- a/website/docs/d/notification_hub.html.markdown +++ b/website/docs/d/notification_hub.html.markdown @@ -66,6 +66,6 @@ A `gcm_credential` block exports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Notification Hub within a Notification Hub Namespace. diff --git a/website/docs/d/notification_hub_namespace.html.markdown b/website/docs/d/notification_hub_namespace.html.markdown index 4cf357a67f61..47b9372dd954 100644 --- a/website/docs/d/notification_hub_namespace.html.markdown +++ b/website/docs/d/notification_hub_namespace.html.markdown @@ -51,6 +51,6 @@ A `sku` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Notification Hub Namespace. diff --git a/website/docs/d/platform_image.html.markdown b/website/docs/d/platform_image.html.markdown index d5a8c7e55671..393eee744f33 100644 --- a/website/docs/d/platform_image.html.markdown +++ b/website/docs/d/platform_image.html.markdown @@ -43,6 +43,6 @@ output "id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Platform Image. diff --git a/website/docs/d/policy_assignment.html.markdown b/website/docs/d/policy_assignment.html.markdown index 293d51def051..384c1e557172 100644 --- a/website/docs/d/policy_assignment.html.markdown +++ b/website/docs/d/policy_assignment.html.markdown @@ -79,6 +79,6 @@ A `non_compliance_message` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Policy Assignment. diff --git a/website/docs/d/policy_definition.html.markdown b/website/docs/d/policy_definition.html.markdown index 1bf1b9cae6e0..fdfa23acb274 100644 --- a/website/docs/d/policy_definition.html.markdown +++ b/website/docs/d/policy_definition.html.markdown @@ -50,6 +50,6 @@ output "id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Policy Definition. diff --git a/website/docs/d/policy_set_definition.html.markdown b/website/docs/d/policy_set_definition.html.markdown index 52007c30934c..c2911a4c6f52 100644 --- a/website/docs/d/policy_set_definition.html.markdown +++ b/website/docs/d/policy_set_definition.html.markdown @@ -84,6 +84,6 @@ An `policy_definition_group` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Policy Set Definition. diff --git a/website/docs/d/policy_virtual_machine_configuration_assignment.html.markdown b/website/docs/d/policy_virtual_machine_configuration_assignment.html.markdown index 05131518a3a5..a6f1867c563e 100644 --- a/website/docs/d/policy_virtual_machine_configuration_assignment.html.markdown +++ b/website/docs/d/policy_virtual_machine_configuration_assignment.html.markdown @@ -50,6 +50,6 @@ output "compliance_status" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Guest Configuration Assignment. diff --git a/website/docs/d/portal_dashboard.html.markdown b/website/docs/d/portal_dashboard.html.markdown index 4a1e0890769d..947694f5116e 100644 --- a/website/docs/d/portal_dashboard.html.markdown +++ b/website/docs/d/portal_dashboard.html.markdown @@ -48,7 +48,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the shared Azure Dashboard. diff --git a/website/docs/d/postgresql_flexible_server.html.markdown b/website/docs/d/postgresql_flexible_server.html.markdown index a557d1d4ada7..7aebdcd672bf 100644 --- a/website/docs/d/postgresql_flexible_server.html.markdown +++ b/website/docs/d/postgresql_flexible_server.html.markdown @@ -60,6 +60,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the PostgreSQL Flexible Server. diff --git a/website/docs/d/postgresql_server.html.markdown b/website/docs/d/postgresql_server.html.markdown index 276b78c62b8e..5b5bf3cdb96f 100644 --- a/website/docs/d/postgresql_server.html.markdown +++ b/website/docs/d/postgresql_server.html.markdown @@ -59,6 +59,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the PostgreSQL Azure Database Server. diff --git a/website/docs/d/private_dns_zone.html.markdown b/website/docs/d/private_dns_zone.html.markdown index 6b9133634045..aea330029b37 100644 --- a/website/docs/d/private_dns_zone.html.markdown +++ b/website/docs/d/private_dns_zone.html.markdown @@ -43,6 +43,6 @@ DNS Zones in your subscription that matches `name` will be returned. ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Private DNS Zone. diff --git a/website/docs/d/private_endpoint_connection.html.markdown b/website/docs/d/private_endpoint_connection.html.markdown index 1d108eb1bac8..2db9146dc0d3 100644 --- a/website/docs/d/private_endpoint_connection.html.markdown +++ b/website/docs/d/private_endpoint_connection.html.markdown @@ -62,6 +62,6 @@ A `private_service_connection` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Private Endpoint. diff --git a/website/docs/d/private_link_service.html.markdown b/website/docs/d/private_link_service.html.markdown index cbb9b65dbbd8..2b140027e463 100644 --- a/website/docs/d/private_link_service.html.markdown +++ b/website/docs/d/private_link_service.html.markdown @@ -70,6 +70,6 @@ The `nat_ip_configuration` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Private Link Service. diff --git a/website/docs/d/private_link_service_endpoint_connections.html.markdown b/website/docs/d/private_link_service_endpoint_connections.html.markdown index 8df004381ecd..59e742d8145d 100644 --- a/website/docs/d/private_link_service_endpoint_connections.html.markdown +++ b/website/docs/d/private_link_service_endpoint_connections.html.markdown @@ -55,6 +55,6 @@ The `private_endpoint_connections` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Private Link Service. diff --git a/website/docs/d/proximity_placement_group.html.markdown b/website/docs/d/proximity_placement_group.html.markdown index 04cc19e43b79..4ac6624143f3 100644 --- a/website/docs/d/proximity_placement_group.html.markdown +++ b/website/docs/d/proximity_placement_group.html.markdown @@ -39,6 +39,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Proximity Placement Group. diff --git a/website/docs/d/public_ip.html.markdown b/website/docs/d/public_ip.html.markdown index b04b159bfdfd..a9b39871acd3 100644 --- a/website/docs/d/public_ip.html.markdown +++ b/website/docs/d/public_ip.html.markdown @@ -115,6 +115,6 @@ output "public_ip_address" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Public IP Address. diff --git a/website/docs/d/public_ip_prefix.html.markdown b/website/docs/d/public_ip_prefix.html.markdown index 1fa65c345941..ed0b9fe9ef55 100644 --- a/website/docs/d/public_ip_prefix.html.markdown +++ b/website/docs/d/public_ip_prefix.html.markdown @@ -41,6 +41,6 @@ output "public_ip_prefix" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Public IP Prefix. diff --git a/website/docs/d/public_ips.html.markdown b/website/docs/d/public_ips.html.markdown index 9e9bd0821a9d..8b61d51ebeff 100644 --- a/website/docs/d/public_ips.html.markdown +++ b/website/docs/d/public_ips.html.markdown @@ -40,6 +40,6 @@ A `public_ips` block contains: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Public IP Addresses. diff --git a/website/docs/d/public_maintenance_configurations.html.markdown b/website/docs/d/public_maintenance_configurations.html.markdown index 71e4d6c556a4..287f6e741804 100644 --- a/website/docs/d/public_maintenance_configurations.html.markdown +++ b/website/docs/d/public_maintenance_configurations.html.markdown @@ -60,6 +60,6 @@ A `configs` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Public Maintenance Configuration. diff --git a/website/docs/d/recovery_services_vault.html.markdown b/website/docs/d/recovery_services_vault.html.markdown index 82384c1c8302..e47ab1679e49 100644 --- a/website/docs/d/recovery_services_vault.html.markdown +++ b/website/docs/d/recovery_services_vault.html.markdown @@ -41,6 +41,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Recovery Services Vault. diff --git a/website/docs/d/redis_cache.html.markdown b/website/docs/d/redis_cache.html.markdown index 7dc263bdd2a2..0448d9004a51 100644 --- a/website/docs/d/redis_cache.html.markdown +++ b/website/docs/d/redis_cache.html.markdown @@ -106,10 +106,10 @@ A `redis_configuration` block exports the following: * `rdb_storage_connection_string` - The Connection String to the Storage Account. Only supported for Premium SKUs. -~> **Note:** There's a bug in the Redis API where the original storage connection string isn't being returned, which [is being tracked in this issue](https://github.com/Azure/azure-rest-api-specs/issues/3037). In the interim you can use [the `ignore_changes` attribute to ignore changes to this field](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) e.g.: +~> **Note:** There's a bug in the Redis API where the original storage connection string isn't being returned, which [is being tracked in this issue](https://github.com/Azure/azure-rest-api-specs/issues/3037). In the interim you can use [the `ignore_changes` attribute to ignore changes to this field](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) e.g.: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Redis Cache. diff --git a/website/docs/d/redis_enterprise_database.html.markdown b/website/docs/d/redis_enterprise_database.html.markdown index e03b61133fad..af8772da587d 100644 --- a/website/docs/d/redis_enterprise_database.html.markdown +++ b/website/docs/d/redis_enterprise_database.html.markdown @@ -59,6 +59,6 @@ output "redis_enterprise_database_secondary_key" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Redis Enterprise Database. diff --git a/website/docs/d/resource_group.html.markdown b/website/docs/d/resource_group.html.markdown index 908792088fe0..9e7ce14ab0ef 100644 --- a/website/docs/d/resource_group.html.markdown +++ b/website/docs/d/resource_group.html.markdown @@ -40,6 +40,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group. diff --git a/website/docs/d/resource_group_template_deployment.html.markdown b/website/docs/d/resource_group_template_deployment.html.markdown index bf40c32fef40..0fbf903e9593 100644 --- a/website/docs/d/resource_group_template_deployment.html.markdown +++ b/website/docs/d/resource_group_template_deployment.html.markdown @@ -45,6 +45,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group Template Deployment. diff --git a/website/docs/d/resources.html.markdown b/website/docs/d/resources.html.markdown index 1dce085973f9..804de7efbc21 100644 --- a/website/docs/d/resources.html.markdown +++ b/website/docs/d/resources.html.markdown @@ -80,6 +80,6 @@ The `resource` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Resources. diff --git a/website/docs/d/role_definition.html.markdown b/website/docs/d/role_definition.html.markdown index 36877a4f2c3b..53f62e5e926c 100644 --- a/website/docs/d/role_definition.html.markdown +++ b/website/docs/d/role_definition.html.markdown @@ -74,6 +74,6 @@ A `permissions` block contains: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Role Definition. diff --git a/website/docs/d/route_filter.html.markdown b/website/docs/d/route_filter.html.markdown index 898d1e4a4447..9ae4d9fdb423 100644 --- a/website/docs/d/route_filter.html.markdown +++ b/website/docs/d/route_filter.html.markdown @@ -57,6 +57,6 @@ A `rule` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Route Filter. diff --git a/website/docs/d/route_table.html.markdown b/website/docs/d/route_table.html.markdown index 2ac0c1b2fc55..a5e4d9425f9a 100644 --- a/website/docs/d/route_table.html.markdown +++ b/website/docs/d/route_table.html.markdown @@ -54,6 +54,6 @@ The `route` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Route Table. diff --git a/website/docs/d/search_service.html.markdown b/website/docs/d/search_service.html.markdown index 02122d9b6067..5f9fbe4e7c3f 100644 --- a/website/docs/d/search_service.html.markdown +++ b/website/docs/d/search_service.html.markdown @@ -80,6 +80,6 @@ A `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Search Service. diff --git a/website/docs/d/sentinel_alert_rule.html.markdown b/website/docs/d/sentinel_alert_rule.html.markdown index 603a501e8820..c980e5bc028d 100644 --- a/website/docs/d/sentinel_alert_rule.html.markdown +++ b/website/docs/d/sentinel_alert_rule.html.markdown @@ -48,6 +48,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel Alert Rule. diff --git a/website/docs/d/sentinel_alert_rule_template.html.markdown b/website/docs/d/sentinel_alert_rule_template.html.markdown index b9bb99536b52..1436decdcbdf 100644 --- a/website/docs/d/sentinel_alert_rule_template.html.markdown +++ b/website/docs/d/sentinel_alert_rule_template.html.markdown @@ -77,6 +77,6 @@ A `scheduled_template` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel. diff --git a/website/docs/d/service_plan.html.markdown b/website/docs/d/service_plan.html.markdown index b430fecfb32b..3d1b104815c6 100644 --- a/website/docs/d/service_plan.html.markdown +++ b/website/docs/d/service_plan.html.markdown @@ -61,6 +61,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Service Plan. diff --git a/website/docs/d/servicebus_namespace.html.markdown b/website/docs/d/servicebus_namespace.html.markdown index c69b4b613eb3..8969489dc28b 100644 --- a/website/docs/d/servicebus_namespace.html.markdown +++ b/website/docs/d/servicebus_namespace.html.markdown @@ -56,6 +56,6 @@ The following attributes are exported only if there is an authorization rule nam ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the ServiceBus Namespace. diff --git a/website/docs/d/servicebus_namespace_authorization_rule.html.markdown b/website/docs/d/servicebus_namespace_authorization_rule.html.markdown index e34f84ae4c49..f45a4c8f0cac 100644 --- a/website/docs/d/servicebus_namespace_authorization_rule.html.markdown +++ b/website/docs/d/servicebus_namespace_authorization_rule.html.markdown @@ -50,6 +50,6 @@ output "rule_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the ServiceBus Namespace Authorization Rule. diff --git a/website/docs/d/servicebus_queue.html.markdown b/website/docs/d/servicebus_queue.html.markdown index 78a5a4f48915..5f2494ffe582 100644 --- a/website/docs/d/servicebus_queue.html.markdown +++ b/website/docs/d/servicebus_queue.html.markdown @@ -72,6 +72,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Service Bus Queue. diff --git a/website/docs/d/servicebus_queue_authorization_rule.html.markdown b/website/docs/d/servicebus_queue_authorization_rule.html.markdown index 396d801c1914..8fafe62293de 100644 --- a/website/docs/d/servicebus_queue_authorization_rule.html.markdown +++ b/website/docs/d/servicebus_queue_authorization_rule.html.markdown @@ -57,6 +57,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the ServiceBus Queue Authorisation Rule. diff --git a/website/docs/d/servicebus_subscription.html.markdown b/website/docs/d/servicebus_subscription.html.markdown index a85e153bcbf9..872a47d127f4 100644 --- a/website/docs/d/servicebus_subscription.html.markdown +++ b/website/docs/d/servicebus_subscription.html.markdown @@ -59,6 +59,6 @@ output "servicebus_subscription" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the ServiceBus Subscription. diff --git a/website/docs/d/servicebus_topic.html.markdown b/website/docs/d/servicebus_topic.html.markdown index f55fc98f0780..2546a76774b0 100644 --- a/website/docs/d/servicebus_topic.html.markdown +++ b/website/docs/d/servicebus_topic.html.markdown @@ -62,6 +62,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Service Bus Topic. diff --git a/website/docs/d/servicebus_topic_authorization_rule.html.markdown b/website/docs/d/servicebus_topic_authorization_rule.html.markdown index 213c0442e682..6a6fe3c062cb 100644 --- a/website/docs/d/servicebus_topic_authorization_rule.html.markdown +++ b/website/docs/d/servicebus_topic_authorization_rule.html.markdown @@ -58,6 +58,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the ServiceBus Topic Authorization Rule. diff --git a/website/docs/d/shared_image.html.markdown b/website/docs/d/shared_image.html.markdown index 8a3d9ee923b5..6b5006d6964f 100644 --- a/website/docs/d/shared_image.html.markdown +++ b/website/docs/d/shared_image.html.markdown @@ -69,6 +69,6 @@ A `identifier` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Shared Image a Shared Image Gallery. diff --git a/website/docs/d/shared_image_gallery.html.markdown b/website/docs/d/shared_image_gallery.html.markdown index 977636dbc0a3..e2a399fe32e8 100644 --- a/website/docs/d/shared_image_gallery.html.markdown +++ b/website/docs/d/shared_image_gallery.html.markdown @@ -42,6 +42,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Shared Image Gallery. diff --git a/website/docs/d/shared_image_version.html.markdown b/website/docs/d/shared_image_version.html.markdown index 3999ce3d5ce9..dc10bbda4e16 100644 --- a/website/docs/d/shared_image_version.html.markdown +++ b/website/docs/d/shared_image_version.html.markdown @@ -70,6 +70,6 @@ The `target_region` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Version of a Shared Image within a Shared Image Gallery. diff --git a/website/docs/d/shared_image_versions.html.markdown b/website/docs/d/shared_image_versions.html.markdown index b32115fdcc04..6b912fb86278 100644 --- a/website/docs/d/shared_image_versions.html.markdown +++ b/website/docs/d/shared_image_versions.html.markdown @@ -65,6 +65,6 @@ The `target_region` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Versions of a Shared Image within a Shared Image Gallery. diff --git a/website/docs/d/signalr_service.html.markdown b/website/docs/d/signalr_service.html.markdown index 2181b43fe1fc..040537cd6820 100644 --- a/website/docs/d/signalr_service.html.markdown +++ b/website/docs/d/signalr_service.html.markdown @@ -53,6 +53,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SignalR service. diff --git a/website/docs/d/site_recovery_fabric.html.markdown b/website/docs/d/site_recovery_fabric.html.markdown index ed54372c9557..31011d1b1e7f 100644 --- a/website/docs/d/site_recovery_fabric.html.markdown +++ b/website/docs/d/site_recovery_fabric.html.markdown @@ -40,6 +40,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Recovery Services Vault. diff --git a/website/docs/d/site_recovery_protection_container.html.markdown b/website/docs/d/site_recovery_protection_container.html.markdown index b6a17fd9a474..a244fe37cea3 100644 --- a/website/docs/d/site_recovery_protection_container.html.markdown +++ b/website/docs/d/site_recovery_protection_container.html.markdown @@ -41,6 +41,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Recovery Services Vault. diff --git a/website/docs/d/site_recovery_replication_policy.html.markdown b/website/docs/d/site_recovery_replication_policy.html.markdown index 448ec4c0c305..723e781af8ef 100644 --- a/website/docs/d/site_recovery_replication_policy.html.markdown +++ b/website/docs/d/site_recovery_replication_policy.html.markdown @@ -42,6 +42,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Recovery Services Vault. diff --git a/website/docs/d/snapshot.html.markdown b/website/docs/d/snapshot.html.markdown index 059df64ff580..788cd14aaf8e 100644 --- a/website/docs/d/snapshot.html.markdown +++ b/website/docs/d/snapshot.html.markdown @@ -43,6 +43,6 @@ data "azurerm_snapshot" "example" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Snapshot. diff --git a/website/docs/d/source_control_token.html.markdown b/website/docs/d/source_control_token.html.markdown index 2b21787363d6..9dde21f9a025 100644 --- a/website/docs/d/source_control_token.html.markdown +++ b/website/docs/d/source_control_token.html.markdown @@ -42,6 +42,6 @@ The following Attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Source GitHub Token. diff --git a/website/docs/d/spatial_anchors_account.html.markdown b/website/docs/d/spatial_anchors_account.html.markdown index e052eabe63da..082d98f1041f 100644 --- a/website/docs/d/spatial_anchors_account.html.markdown +++ b/website/docs/d/spatial_anchors_account.html.markdown @@ -45,6 +45,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Spatial Anchors Account. diff --git a/website/docs/d/spring_cloud_app.html.markdown b/website/docs/d/spring_cloud_app.html.markdown index ab998d00ed73..e64cef7e7096 100644 --- a/website/docs/d/spring_cloud_app.html.markdown +++ b/website/docs/d/spring_cloud_app.html.markdown @@ -74,6 +74,6 @@ The `persistent_disk` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Application. diff --git a/website/docs/d/spring_cloud_service.html.markdown b/website/docs/d/spring_cloud_service.html.markdown index 01c4949e6836..55e86c9dcc45 100644 --- a/website/docs/d/spring_cloud_service.html.markdown +++ b/website/docs/d/spring_cloud_service.html.markdown @@ -121,6 +121,6 @@ The `required_network_traffic_rules` supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Service. diff --git a/website/docs/d/sql_database.html.markdown b/website/docs/d/sql_database.html.markdown index 8762f942480a..fd8885323ae0 100644 --- a/website/docs/d/sql_database.html.markdown +++ b/website/docs/d/sql_database.html.markdown @@ -68,6 +68,6 @@ output "sql_database_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SQL Azure Database. diff --git a/website/docs/d/sql_managed_instance.html.markdown b/website/docs/d/sql_managed_instance.html.markdown index 23f07ff1b313..9ce0fc9a1aa4 100644 --- a/website/docs/d/sql_managed_instance.html.markdown +++ b/website/docs/d/sql_managed_instance.html.markdown @@ -82,6 +82,6 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SQL Azure Managed Instance. diff --git a/website/docs/d/sql_server.html.markdown b/website/docs/d/sql_server.html.markdown index 59a225059003..9d71020932d0 100644 --- a/website/docs/d/sql_server.html.markdown +++ b/website/docs/d/sql_server.html.markdown @@ -59,6 +59,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SQL Azure Database Server. diff --git a/website/docs/d/ssh_public_key.html.markdown b/website/docs/d/ssh_public_key.html.markdown index 948e0295cc54..65444d7c951b 100644 --- a/website/docs/d/ssh_public_key.html.markdown +++ b/website/docs/d/ssh_public_key.html.markdown @@ -45,6 +45,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SSH Public Key. diff --git a/website/docs/d/storage_account.html.markdown b/website/docs/d/storage_account.html.markdown index 75b6348b9bcf..5c7a6594e8a9 100644 --- a/website/docs/d/storage_account.html.markdown +++ b/website/docs/d/storage_account.html.markdown @@ -152,6 +152,6 @@ output "storage_account_tier" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Account. diff --git a/website/docs/d/storage_account_blob_container_sas.html.markdown b/website/docs/d/storage_account_blob_container_sas.html.markdown index 01e3121596a1..0cbb221aa85c 100644 --- a/website/docs/d/storage_account_blob_container_sas.html.markdown +++ b/website/docs/d/storage_account_blob_container_sas.html.markdown @@ -120,6 +120,6 @@ for additional details on the fields above. ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Blob Container. diff --git a/website/docs/d/storage_account_sas.html.markdown b/website/docs/d/storage_account_sas.html.markdown index 460116410ee7..498f0a7798e6 100644 --- a/website/docs/d/storage_account_sas.html.markdown +++ b/website/docs/d/storage_account_sas.html.markdown @@ -139,6 +139,6 @@ for additional details on the fields above. ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the SAS Token. diff --git a/website/docs/d/storage_blob.html.markdown b/website/docs/d/storage_blob.html.markdown index cd6f7eb1ae75..8d2b1531d591 100644 --- a/website/docs/d/storage_blob.html.markdown +++ b/website/docs/d/storage_blob.html.markdown @@ -48,6 +48,6 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Blob. diff --git a/website/docs/d/storage_container.html.markdown b/website/docs/d/storage_container.html.markdown index 9706f8b82807..e570dd1e9047 100644 --- a/website/docs/d/storage_container.html.markdown +++ b/website/docs/d/storage_container.html.markdown @@ -41,6 +41,6 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Container. diff --git a/website/docs/d/storage_encryption_scope.html.markdown b/website/docs/d/storage_encryption_scope.html.markdown index 132291551cb5..13757f25b192 100644 --- a/website/docs/d/storage_encryption_scope.html.markdown +++ b/website/docs/d/storage_encryption_scope.html.markdown @@ -48,6 +48,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Encryption Scope. diff --git a/website/docs/d/storage_management_policy.html.markdown b/website/docs/d/storage_management_policy.html.markdown index 3a1909e4439b..835b7370589d 100644 --- a/website/docs/d/storage_management_policy.html.markdown +++ b/website/docs/d/storage_management_policy.html.markdown @@ -97,6 +97,6 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Management Policy. diff --git a/website/docs/d/storage_share.html.markdown b/website/docs/d/storage_share.html.markdown index 393a0ed5b05b..f361af913f43 100644 --- a/website/docs/d/storage_share.html.markdown +++ b/website/docs/d/storage_share.html.markdown @@ -61,6 +61,6 @@ A `access_policy` block has the following attributes: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage. diff --git a/website/docs/d/storage_sync.html.markdown b/website/docs/d/storage_sync.html.markdown index 861894d13e8e..92c5bb5f8f0b 100644 --- a/website/docs/d/storage_sync.html.markdown +++ b/website/docs/d/storage_sync.html.markdown @@ -45,6 +45,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Sync. diff --git a/website/docs/d/storage_sync_group.html.markdown b/website/docs/d/storage_sync_group.html.markdown index 62626fd13af9..e39c9964f337 100644 --- a/website/docs/d/storage_sync_group.html.markdown +++ b/website/docs/d/storage_sync_group.html.markdown @@ -43,6 +43,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Sync Group. diff --git a/website/docs/d/storage_table_entity.html.markdown b/website/docs/d/storage_table_entity.html.markdown index 664f32d2f1cf..23b0372a9e14 100644 --- a/website/docs/d/storage_table_entity.html.markdown +++ b/website/docs/d/storage_table_entity.html.markdown @@ -41,6 +41,6 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Table Entity. diff --git a/website/docs/d/stream_analytics_job.html.markdown b/website/docs/d/stream_analytics_job.html.markdown index 1b48d60110ac..0e6b4ef01649 100644 --- a/website/docs/d/stream_analytics_job.html.markdown +++ b/website/docs/d/stream_analytics_job.html.markdown @@ -74,6 +74,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics Job. diff --git a/website/docs/d/subnet.html.markdown b/website/docs/d/subnet.html.markdown index 6f397f979e2c..fb8aa235a224 100644 --- a/website/docs/d/subnet.html.markdown +++ b/website/docs/d/subnet.html.markdown @@ -44,6 +44,6 @@ output "subnet_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Subnet located within a Virtual Network. diff --git a/website/docs/d/subscription.html.markdown b/website/docs/d/subscription.html.markdown index 3cdad997aec8..8011615e3739 100644 --- a/website/docs/d/subscription.html.markdown +++ b/website/docs/d/subscription.html.markdown @@ -39,6 +39,6 @@ output "current_subscription_display_name" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Subscription. diff --git a/website/docs/d/subscription_template_deployment.html.markdown b/website/docs/d/subscription_template_deployment.html.markdown index 635755c93360..1ca163fcfd9f 100644 --- a/website/docs/d/subscription_template_deployment.html.markdown +++ b/website/docs/d/subscription_template_deployment.html.markdown @@ -42,6 +42,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Subscription Template Deployment. diff --git a/website/docs/d/subscriptions.html.markdown b/website/docs/d/subscriptions.html.markdown index 2441a246883f..5caea684d193 100644 --- a/website/docs/d/subscriptions.html.markdown +++ b/website/docs/d/subscriptions.html.markdown @@ -48,6 +48,6 @@ The `subscription` block contains: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the subscriptions. diff --git a/website/docs/d/synapse_workspace.html.markdown b/website/docs/d/synapse_workspace.html.markdown index 774e4fe54bc2..dfed2935562e 100644 --- a/website/docs/d/synapse_workspace.html.markdown +++ b/website/docs/d/synapse_workspace.html.markdown @@ -57,6 +57,6 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Workspace. diff --git a/website/docs/d/template_spec_version.html.markdown b/website/docs/d/template_spec_version.html.markdown index 09dd1f756ebe..b947c3630965 100644 --- a/website/docs/d/template_spec_version.html.markdown +++ b/website/docs/d/template_spec_version.html.markdown @@ -46,6 +46,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Template. diff --git a/website/docs/d/tenant_template_deployment.html.markdown b/website/docs/d/tenant_template_deployment.html.markdown index 9d46630a9d88..4ba47e29ed89 100644 --- a/website/docs/d/tenant_template_deployment.html.markdown +++ b/website/docs/d/tenant_template_deployment.html.markdown @@ -42,6 +42,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Tenant Template Deployment. diff --git a/website/docs/d/traffic_manager_geographical_location.html.markdown b/website/docs/d/traffic_manager_geographical_location.html.markdown index 3528ebb6583c..c1e544c87623 100644 --- a/website/docs/d/traffic_manager_geographical_location.html.markdown +++ b/website/docs/d/traffic_manager_geographical_location.html.markdown @@ -33,6 +33,6 @@ output "location_code" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Location. diff --git a/website/docs/d/traffic_manager_profile.html.markdown b/website/docs/d/traffic_manager_profile.html.markdown index 54b367f7313b..1bc18d07e4cf 100644 --- a/website/docs/d/traffic_manager_profile.html.markdown +++ b/website/docs/d/traffic_manager_profile.html.markdown @@ -82,6 +82,6 @@ A `custom_header` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Location. diff --git a/website/docs/d/user_assigned_identity.html.markdown b/website/docs/d/user_assigned_identity.html.markdown index f7e3e5f79ff5..cf0ee11ce070 100644 --- a/website/docs/d/user_assigned_identity.html.markdown +++ b/website/docs/d/user_assigned_identity.html.markdown @@ -50,6 +50,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the User Assigned Identity. diff --git a/website/docs/d/virtual_hub.html.markdown b/website/docs/d/virtual_hub.html.markdown index cd0feb327d83..4a23f157366c 100644 --- a/website/docs/d/virtual_hub.html.markdown +++ b/website/docs/d/virtual_hub.html.markdown @@ -51,6 +51,6 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Hub. diff --git a/website/docs/d/virtual_machine.html.markdown b/website/docs/d/virtual_machine.html.markdown index d3ce1b367e36..f30d85563772 100644 --- a/website/docs/d/virtual_machine.html.markdown +++ b/website/docs/d/virtual_machine.html.markdown @@ -63,6 +63,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Machine. diff --git a/website/docs/d/virtual_machine_scale_set.html.markdown b/website/docs/d/virtual_machine_scale_set.html.markdown index be244d6f7207..4607731d7521 100644 --- a/website/docs/d/virtual_machine_scale_set.html.markdown +++ b/website/docs/d/virtual_machine_scale_set.html.markdown @@ -92,6 +92,6 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Machine Scale Set. diff --git a/website/docs/d/virtual_network.html.markdown b/website/docs/d/virtual_network.html.markdown index 27739cad655a..6873a17b3d19 100644 --- a/website/docs/d/virtual_network.html.markdown +++ b/website/docs/d/virtual_network.html.markdown @@ -42,6 +42,6 @@ output "virtual_network_id" { ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Network. diff --git a/website/docs/d/virtual_network_gateway.html.markdown b/website/docs/d/virtual_network_gateway.html.markdown index a5caed0b3188..ec7fc93e2765 100644 --- a/website/docs/d/virtual_network_gateway.html.markdown +++ b/website/docs/d/virtual_network_gateway.html.markdown @@ -149,6 +149,6 @@ The `root_revoked_certificate` block supports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Network Gateway. diff --git a/website/docs/d/virtual_network_gateway_connection.html.markdown b/website/docs/d/virtual_network_gateway_connection.html.markdown index fffafefcc5b6..2ff5e87af493 100644 --- a/website/docs/d/virtual_network_gateway_connection.html.markdown +++ b/website/docs/d/virtual_network_gateway_connection.html.markdown @@ -126,6 +126,6 @@ The `traffic_selector_policy` block supports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Network Gateway Connection. diff --git a/website/docs/d/virtual_wan.html.markdown b/website/docs/d/virtual_wan.html.markdown index 75edb4395cea..4ab857f1ec32 100644 --- a/website/docs/d/virtual_wan.html.markdown +++ b/website/docs/d/virtual_wan.html.markdown @@ -88,6 +88,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: - `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Wan. diff --git a/website/docs/d/vmware_private_cloud.html.markdown b/website/docs/d/vmware_private_cloud.html.markdown index 2ce4647a5f53..cce395cc6985 100644 --- a/website/docs/d/vmware_private_cloud.html.markdown +++ b/website/docs/d/vmware_private_cloud.html.markdown @@ -93,6 +93,6 @@ A `management_cluster` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the VMware Private Cloud. diff --git a/website/docs/d/vpn_gateway.html.markdown b/website/docs/d/vpn_gateway.html.markdown index c5a99d42c02b..7c8125262971 100644 --- a/website/docs/d/vpn_gateway.html.markdown +++ b/website/docs/d/vpn_gateway.html.markdown @@ -86,6 +86,6 @@ A `instance_bgp_peering_address` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the VPN Gateway. diff --git a/website/docs/d/web_application_firewall_policy.html.markdown b/website/docs/d/web_application_firewall_policy.html.markdown index 2a21526fba0a..31f86f3a60af 100644 --- a/website/docs/d/web_application_firewall_policy.html.markdown +++ b/website/docs/d/web_application_firewall_policy.html.markdown @@ -39,6 +39,6 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Web Application Firewall Policy. diff --git a/website/docs/d/web_pubsub.html.markdown b/website/docs/d/web_pubsub.html.markdown index e5298e156089..15fe9774c69f 100644 --- a/website/docs/d/web_pubsub.html.markdown +++ b/website/docs/d/web_pubsub.html.markdown @@ -68,6 +68,6 @@ The `identity` block exports the following: --- ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Web Pubsub service. diff --git a/website/docs/d/web_pubsub_private_link_resource.html.markdown b/website/docs/d/web_pubsub_private_link_resource.html.markdown index 0553874e3fc6..72328f257942 100644 --- a/website/docs/d/web_pubsub_private_link_resource.html.markdown +++ b/website/docs/d/web_pubsub_private_link_resource.html.markdown @@ -52,7 +52,7 @@ A `shared_private_link_resource_types` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 5 minutes) Used when retrieving the Private Link Resource. diff --git a/website/docs/d/windows_function_app.html.markdown b/website/docs/d/windows_function_app.html.markdown index 4cd871ee530a..80eecebbd77b 100644 --- a/website/docs/d/windows_function_app.html.markdown +++ b/website/docs/d/windows_function_app.html.markdown @@ -371,6 +371,6 @@ A `twitter` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 10 minutes) Used when retrieving the Windows Function App. diff --git a/website/docs/d/windows_web_app.html.markdown b/website/docs/d/windows_web_app.html.markdown index df893a09d902..9ef858e63e23 100644 --- a/website/docs/d/windows_web_app.html.markdown +++ b/website/docs/d/windows_web_app.html.markdown @@ -524,6 +524,6 @@ A `virtual_directory` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `read` - (Defaults to 10 minutes) Used when retrieving the Windows Web App. diff --git a/website/docs/r/aadb2c_directory.html.markdown b/website/docs/r/aadb2c_directory.html.markdown index 8a3c4b842db2..006f426624d9 100644 --- a/website/docs/r/aadb2c_directory.html.markdown +++ b/website/docs/r/aadb2c_directory.html.markdown @@ -55,7 +55,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the AAD B2C Directory. * `read` - (Defaults to 5 minutes) Used when retrieving the AAD B2C Directory. diff --git a/website/docs/r/active_directory_domain_service.html.markdown b/website/docs/r/active_directory_domain_service.html.markdown index d472219b9d20..047aa627aa0c 100644 --- a/website/docs/r/active_directory_domain_service.html.markdown +++ b/website/docs/r/active_directory_domain_service.html.markdown @@ -262,7 +262,7 @@ An `initial_replica_set` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 2 hours) Used when creating the Domain Service. * `update` - (Defaults to 2 hours) Used when updating the Domain Service. diff --git a/website/docs/r/active_directory_domain_service_replica_set.html.markdown b/website/docs/r/active_directory_domain_service_replica_set.html.markdown index db87ca113bdf..840552be7bd6 100644 --- a/website/docs/r/active_directory_domain_service_replica_set.html.markdown +++ b/website/docs/r/active_directory_domain_service_replica_set.html.markdown @@ -300,7 +300,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 2 hours) Used when creating the Domain Service. * `update` - (Defaults to 2 hours) Used when updating the Domain Service. diff --git a/website/docs/r/active_directory_domain_service_trust.html.markdown b/website/docs/r/active_directory_domain_service_trust.html.markdown index 326558fc8bc2..10e65b80b061 100644 --- a/website/docs/r/active_directory_domain_service_trust.html.markdown +++ b/website/docs/r/active_directory_domain_service_trust.html.markdown @@ -53,7 +53,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Active Directory Domain Service Trust. * `read` - (Defaults to 5 minutes) Used when retrieving the Active Directory Domain Service Trust. diff --git a/website/docs/r/advanced_threat_protection.html.markdown b/website/docs/r/advanced_threat_protection.html.markdown index 84545b0ba5cb..800dc54f21e6 100644 --- a/website/docs/r/advanced_threat_protection.html.markdown +++ b/website/docs/r/advanced_threat_protection.html.markdown @@ -54,7 +54,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Advanced Threat Protection. * `update` - (Defaults to 30 minutes) Used when updating the Advanced Threat Protection. diff --git a/website/docs/r/analysis_services_server.html.markdown b/website/docs/r/analysis_services_server.html.markdown index 233eabcb46a8..805bbeab374c 100644 --- a/website/docs/r/analysis_services_server.html.markdown +++ b/website/docs/r/analysis_services_server.html.markdown @@ -83,7 +83,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Analysis Services Server. * `update` - (Defaults to 30 minutes) Used when updating the Analysis Services Server. diff --git a/website/docs/r/api_connection.html.markdown b/website/docs/r/api_connection.html.markdown index b7f439080d11..3369ce7cd641 100644 --- a/website/docs/r/api_connection.html.markdown +++ b/website/docs/r/api_connection.html.markdown @@ -83,7 +83,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the API Connection. diff --git a/website/docs/r/api_management.html.markdown b/website/docs/r/api_management.html.markdown index ec7429ed7f95..5e27337bcdce 100644 --- a/website/docs/r/api_management.html.markdown +++ b/website/docs/r/api_management.html.markdown @@ -416,7 +416,7 @@ The `hostname_configuration` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 3 hours) Used when creating the API Management Service. * `update` - (Defaults to 3 hours) Used when updating the API Management Service. diff --git a/website/docs/r/api_management_api.html.markdown b/website/docs/r/api_management_api.html.markdown index 1e1cabf3d63c..d9dfd610c59c 100644 --- a/website/docs/r/api_management_api.html.markdown +++ b/website/docs/r/api_management_api.html.markdown @@ -152,7 +152,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API. * `update` - (Defaults to 30 minutes) Used when updating the API Management API. diff --git a/website/docs/r/api_management_api_diagnostic.html.markdown b/website/docs/r/api_management_api_diagnostic.html.markdown index 15742c285839..e4924a5439ff 100644 --- a/website/docs/r/api_management_api_diagnostic.html.markdown +++ b/website/docs/r/api_management_api_diagnostic.html.markdown @@ -184,7 +184,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Service API Diagnostics Logs. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Service API Diagnostics Logs. diff --git a/website/docs/r/api_management_api_operation.html.markdown b/website/docs/r/api_management_api_operation.html.markdown index 754eb1c14a4d..b3ed932d8673 100644 --- a/website/docs/r/api_management_api_operation.html.markdown +++ b/website/docs/r/api_management_api_operation.html.markdown @@ -197,7 +197,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Operation. * `update` - (Defaults to 30 minutes) Used when updating the API Management API Operation. diff --git a/website/docs/r/api_management_api_operation_policy.html.markdown b/website/docs/r/api_management_api_operation_policy.html.markdown index 2589afe6c305..73442bcd81dc 100644 --- a/website/docs/r/api_management_api_operation_policy.html.markdown +++ b/website/docs/r/api_management_api_operation_policy.html.markdown @@ -91,7 +91,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Operation Policy. * `update` - (Defaults to 30 minutes) Used when updating the API Management API Operation Policy. diff --git a/website/docs/r/api_management_api_operation_tag.html.markdown b/website/docs/r/api_management_api_operation_tag.html.markdown index f4e352fd3577..d99c7609a078 100644 --- a/website/docs/r/api_management_api_operation_tag.html.markdown +++ b/website/docs/r/api_management_api_operation_tag.html.markdown @@ -62,7 +62,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Operation Tag. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management API Operation Tag. diff --git a/website/docs/r/api_management_api_policy.html.markdown b/website/docs/r/api_management_api_policy.html.markdown index 07cc26cb9088..7207351aad2d 100644 --- a/website/docs/r/api_management_api_policy.html.markdown +++ b/website/docs/r/api_management_api_policy.html.markdown @@ -59,7 +59,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Policy. * `update` - (Defaults to 30 minutes) Used when updating the API Management API Policy. diff --git a/website/docs/r/api_management_api_release.html.markdown b/website/docs/r/api_management_api_release.html.markdown index 3b7a832c1a7e..f4d2c6b38a6c 100644 --- a/website/docs/r/api_management_api_release.html.markdown +++ b/website/docs/r/api_management_api_release.html.markdown @@ -72,7 +72,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Release. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management API Release. diff --git a/website/docs/r/api_management_api_schema.html.markdown b/website/docs/r/api_management_api_schema.html.markdown index 4ace2b262428..725d88401e47 100644 --- a/website/docs/r/api_management_api_schema.html.markdown +++ b/website/docs/r/api_management_api_schema.html.markdown @@ -58,7 +58,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Schema. * `update` - (Defaults to 30 minutes) Used when updating the API Management API Schema. diff --git a/website/docs/r/api_management_api_tag.html.markdown b/website/docs/r/api_management_api_tag.html.markdown index 780722870ea5..1086605cd696 100644 --- a/website/docs/r/api_management_api_tag.html.markdown +++ b/website/docs/r/api_management_api_tag.html.markdown @@ -61,7 +61,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Tag. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management API Tag. diff --git a/website/docs/r/api_management_api_version_set.html.markdown b/website/docs/r/api_management_api_version_set.html.markdown index 5d283cd0ef4a..3ff54c28c698 100644 --- a/website/docs/r/api_management_api_version_set.html.markdown +++ b/website/docs/r/api_management_api_version_set.html.markdown @@ -76,7 +76,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API Version Set. * `update` - (Defaults to 30 minutes) Used when updating the API Management API Version Set. diff --git a/website/docs/r/api_management_authorization_server.html.markdown b/website/docs/r/api_management_authorization_server.html.markdown index 293578451050..c52a2d51a087 100644 --- a/website/docs/r/api_management_authorization_server.html.markdown +++ b/website/docs/r/api_management_authorization_server.html.markdown @@ -107,7 +107,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Authorization Server. * `update` - (Defaults to 30 minutes) Used when updating the API Management Authorization Server. @@ -124,7 +124,7 @@ terraform import azurerm_api_management_authorization_server.example /subscripti ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Authorization Server. * `update` - (Defaults to 30 minutes) Used when updating the API Management Authorization Server. diff --git a/website/docs/r/api_management_backend.html.markdown b/website/docs/r/api_management_backend.html.markdown index da3edd459bfe..09e1a7e7b36c 100644 --- a/website/docs/r/api_management_backend.html.markdown +++ b/website/docs/r/api_management_backend.html.markdown @@ -141,7 +141,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Backend. * `update` - (Defaults to 30 minutes) Used when updating the API Management Backend. diff --git a/website/docs/r/api_management_certificate.html.markdown b/website/docs/r/api_management_certificate.html.markdown index c5fa77925a9b..74d53b86d0f4 100644 --- a/website/docs/r/api_management_certificate.html.markdown +++ b/website/docs/r/api_management_certificate.html.markdown @@ -168,7 +168,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Certificate. * `update` - (Defaults to 30 minutes) Used when updating the API Management Certificate. diff --git a/website/docs/r/api_management_custom_domain.html.markdown b/website/docs/r/api_management_custom_domain.html.markdown index 84e938ea7b9a..2e8a43e2cb39 100644 --- a/website/docs/r/api_management_custom_domain.html.markdown +++ b/website/docs/r/api_management_custom_domain.html.markdown @@ -166,7 +166,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Custom Domain. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Custom Domain. diff --git a/website/docs/r/api_management_diagnostic.html.markdown b/website/docs/r/api_management_diagnostic.html.markdown index 5804f6d59863..ce566f489840 100644 --- a/website/docs/r/api_management_diagnostic.html.markdown +++ b/website/docs/r/api_management_diagnostic.html.markdown @@ -148,7 +148,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Diagnostic. * `update` - (Defaults to 30 minutes) Used when updating the API Management Diagnostic. diff --git a/website/docs/r/api_management_email_template.html.markdown b/website/docs/r/api_management_email_template.html.markdown index 4b6feeb99088..75730e8a0e48 100644 --- a/website/docs/r/api_management_email_template.html.markdown +++ b/website/docs/r/api_management_email_template.html.markdown @@ -80,7 +80,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Email Template. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Email Template. diff --git a/website/docs/r/api_management_gateway.html.markdown b/website/docs/r/api_management_gateway.html.markdown index dc96e0411cf1..c2ee72d68b7a 100644 --- a/website/docs/r/api_management_gateway.html.markdown +++ b/website/docs/r/api_management_gateway.html.markdown @@ -75,7 +75,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Gateway. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Gateway. diff --git a/website/docs/r/api_management_gateway_api.html.markdown b/website/docs/r/api_management_gateway_api.html.markdown index c6e84f4aa818..c9ed5e99d759 100644 --- a/website/docs/r/api_management_gateway_api.html.markdown +++ b/website/docs/r/api_management_gateway_api.html.markdown @@ -52,7 +52,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Gateway API. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Gateway API. diff --git a/website/docs/r/api_management_group.html.markdown b/website/docs/r/api_management_group.html.markdown index 7818b1ed3df7..5863f693cc06 100644 --- a/website/docs/r/api_management_group.html.markdown +++ b/website/docs/r/api_management_group.html.markdown @@ -65,7 +65,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Group. * `update` - (Defaults to 30 minutes) Used when updating the API Management Group. diff --git a/website/docs/r/api_management_group_user.html.markdown b/website/docs/r/api_management_group_user.html.markdown index a7eb2e93d59f..a9abfd87796e 100644 --- a/website/docs/r/api_management_group_user.html.markdown +++ b/website/docs/r/api_management_group_user.html.markdown @@ -49,7 +49,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Group User. * `update` - (Defaults to 30 minutes) Used when updating the API Management Group User. diff --git a/website/docs/r/api_management_identity_provider_aad.html.markdown b/website/docs/r/api_management_identity_provider_aad.html.markdown index c51f207710d3..f8126a813f8f 100644 --- a/website/docs/r/api_management_identity_provider_aad.html.markdown +++ b/website/docs/r/api_management_identity_provider_aad.html.markdown @@ -62,7 +62,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management AAD Identity Provider. * `update` - (Defaults to 30 minutes) Used when updating the API Management AAD Identity Provider. diff --git a/website/docs/r/api_management_identity_provider_aadb2c.html.markdown b/website/docs/r/api_management_identity_provider_aadb2c.html.markdown index 1e5a70c51396..78cf7ce67522 100644 --- a/website/docs/r/api_management_identity_provider_aadb2c.html.markdown +++ b/website/docs/r/api_management_identity_provider_aadb2c.html.markdown @@ -87,7 +87,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Azure AD B2C Identity Provider. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Azure AD B2C Identity Provider. diff --git a/website/docs/r/api_management_identity_provider_facebook.html.markdown b/website/docs/r/api_management_identity_provider_facebook.html.markdown index bc7195cdb355..1e1376fc3863 100644 --- a/website/docs/r/api_management_identity_provider_facebook.html.markdown +++ b/website/docs/r/api_management_identity_provider_facebook.html.markdown @@ -57,7 +57,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Facebook Identity Provider. * `update` - (Defaults to 30 minutes) Used when updating the API Management Facebook Identity Provider. diff --git a/website/docs/r/api_management_identity_provider_google.html.markdown b/website/docs/r/api_management_identity_provider_google.html.markdown index 64b925d52414..a1061fa91f56 100644 --- a/website/docs/r/api_management_identity_provider_google.html.markdown +++ b/website/docs/r/api_management_identity_provider_google.html.markdown @@ -57,7 +57,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Google Identity Provider. * `update` - (Defaults to 30 minutes) Used when updating the API Management Google Identity Provider. diff --git a/website/docs/r/api_management_identity_provider_microsoft.html.markdown b/website/docs/r/api_management_identity_provider_microsoft.html.markdown index b2f0096f4b5b..2d0cdf127670 100644 --- a/website/docs/r/api_management_identity_provider_microsoft.html.markdown +++ b/website/docs/r/api_management_identity_provider_microsoft.html.markdown @@ -57,7 +57,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Microsoft Identity Provider. * `update` - (Defaults to 30 minutes) Used when updating the API Management Microsoft Identity Provider. diff --git a/website/docs/r/api_management_identity_provider_twitter.html.markdown b/website/docs/r/api_management_identity_provider_twitter.html.markdown index 1f58599d33d3..a4829ad36d13 100644 --- a/website/docs/r/api_management_identity_provider_twitter.html.markdown +++ b/website/docs/r/api_management_identity_provider_twitter.html.markdown @@ -57,7 +57,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Twitter Identity Provider. * `update` - (Defaults to 30 minutes) Used when updating the API Management Twitter Identity Provider. diff --git a/website/docs/r/api_management_logger.html.markdown b/website/docs/r/api_management_logger.html.markdown index 02f047c7c364..347e0c576623 100644 --- a/website/docs/r/api_management_logger.html.markdown +++ b/website/docs/r/api_management_logger.html.markdown @@ -92,7 +92,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Logger. * `update` - (Defaults to 30 minutes) Used when updating the API Management Logger. diff --git a/website/docs/r/api_management_named_value.html.markdown b/website/docs/r/api_management_named_value.html.markdown index eb00e29c7c47..b1d7465ec7c0 100644 --- a/website/docs/r/api_management_named_value.html.markdown +++ b/website/docs/r/api_management_named_value.html.markdown @@ -77,7 +77,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Named Value. * `update` - (Defaults to 30 minutes) Used when updating the API Management Named Value. diff --git a/website/docs/r/api_management_notification_recipient_email.html.markdown b/website/docs/r/api_management_notification_recipient_email.html.markdown index 4c151398b322..15ddb2fb8251 100644 --- a/website/docs/r/api_management_notification_recipient_email.html.markdown +++ b/website/docs/r/api_management_notification_recipient_email.html.markdown @@ -53,7 +53,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Notification Recipient Email. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Notification Recipient Email. diff --git a/website/docs/r/api_management_notification_recipient_user.html.markdown b/website/docs/r/api_management_notification_recipient_user.html.markdown index b92c2a28a94e..c00cc80b8939 100644 --- a/website/docs/r/api_management_notification_recipient_user.html.markdown +++ b/website/docs/r/api_management_notification_recipient_user.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Notification Recipient User. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Notification Recipient User. diff --git a/website/docs/r/api_management_openid_connect_provider.html.markdown b/website/docs/r/api_management_openid_connect_provider.html.markdown index 3b6526b25c0b..d6f796438e29 100644 --- a/website/docs/r/api_management_openid_connect_provider.html.markdown +++ b/website/docs/r/api_management_openid_connect_provider.html.markdown @@ -69,7 +69,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management OpenID Connect Provider. * `update` - (Defaults to 30 minutes) Used when updating the API Management OpenID Connect Provider. diff --git a/website/docs/r/api_management_policy.html.markdown b/website/docs/r/api_management_policy.html.markdown index d38b2d4d3718..30432246019a 100644 --- a/website/docs/r/api_management_policy.html.markdown +++ b/website/docs/r/api_management_policy.html.markdown @@ -64,7 +64,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management service Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management service Policy. diff --git a/website/docs/r/api_management_product.html.markdown b/website/docs/r/api_management_product.html.markdown index e1320879d39c..aa7880b8e24c 100644 --- a/website/docs/r/api_management_product.html.markdown +++ b/website/docs/r/api_management_product.html.markdown @@ -77,7 +77,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Product. * `update` - (Defaults to 30 minutes) Used when updating the API Management Product. diff --git a/website/docs/r/api_management_product_api.html.markdown b/website/docs/r/api_management_product_api.html.markdown index a25e9c4f6da1..6a3928b55ac8 100644 --- a/website/docs/r/api_management_product_api.html.markdown +++ b/website/docs/r/api_management_product_api.html.markdown @@ -59,7 +59,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Product API. * `update` - (Defaults to 30 minutes) Used when updating the API Management Product API. diff --git a/website/docs/r/api_management_product_group.html.markdown b/website/docs/r/api_management_product_group.html.markdown index 7e65aae2adb4..f4b85ac79790 100644 --- a/website/docs/r/api_management_product_group.html.markdown +++ b/website/docs/r/api_management_product_group.html.markdown @@ -58,7 +58,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Product Group. * `update` - (Defaults to 30 minutes) Used when updating the API Management Product Group. diff --git a/website/docs/r/api_management_product_policy.html.markdown b/website/docs/r/api_management_product_policy.html.markdown index c7ef0f5f9e41..2bf605421f59 100644 --- a/website/docs/r/api_management_product_policy.html.markdown +++ b/website/docs/r/api_management_product_policy.html.markdown @@ -59,7 +59,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Product Policy. * `update` - (Defaults to 30 minutes) Used when updating the API Management Product Policy. diff --git a/website/docs/r/api_management_redis_cache.html.markdown b/website/docs/r/api_management_redis_cache.html.markdown index 85a9f1dc0846..059e86c29737 100644 --- a/website/docs/r/api_management_redis_cache.html.markdown +++ b/website/docs/r/api_management_redis_cache.html.markdown @@ -77,7 +77,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Redis Cache. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Redis Cache. diff --git a/website/docs/r/api_management_subscription.html.markdown b/website/docs/r/api_management_subscription.html.markdown index 87709a6363cc..483e469c3c0a 100644 --- a/website/docs/r/api_management_subscription.html.markdown +++ b/website/docs/r/api_management_subscription.html.markdown @@ -81,7 +81,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Subscription. * `update` - (Defaults to 30 minutes) Used when updating the API Management Subscription. diff --git a/website/docs/r/api_management_tag.html.markdown b/website/docs/r/api_management_tag.html.markdown index 4834ba91c577..9bc7390bd6db 100644 --- a/website/docs/r/api_management_tag.html.markdown +++ b/website/docs/r/api_management_tag.html.markdown @@ -55,7 +55,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management Tag. * `read` - (Defaults to 5 minutes) Used when retrieving the API Management Tag. diff --git a/website/docs/r/api_management_user.html.markdown b/website/docs/r/api_management_user.html.markdown index 85c4c93123f8..a83dff20b80d 100644 --- a/website/docs/r/api_management_user.html.markdown +++ b/website/docs/r/api_management_user.html.markdown @@ -76,7 +76,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 45 minutes) Used when creating the API Management User. * `update` - (Defaults to 45 minutes) Used when updating the API Management User. diff --git a/website/docs/r/app_configuration.html.markdown b/website/docs/r/app_configuration.html.markdown index 9840001391ce..60dc97115216 100644 --- a/website/docs/r/app_configuration.html.markdown +++ b/website/docs/r/app_configuration.html.markdown @@ -123,7 +123,7 @@ A `secondary_write_key` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Configuration. * `update` - (Defaults to 30 minutes) Used when updating the App Configuration. diff --git a/website/docs/r/app_configuration_feature.html.markdown b/website/docs/r/app_configuration_feature.html.markdown index 207899195fba..7888d9ed027d 100644 --- a/website/docs/r/app_configuration_feature.html.markdown +++ b/website/docs/r/app_configuration_feature.html.markdown @@ -94,7 +94,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Configuration Feature. * `update` - (Defaults to 30 minutes) Used when updating the App Configuration Feature. diff --git a/website/docs/r/app_configuration_key.html.markdown b/website/docs/r/app_configuration_key.html.markdown index a35a0d2462ff..c03c0e1ac0c8 100644 --- a/website/docs/r/app_configuration_key.html.markdown +++ b/website/docs/r/app_configuration_key.html.markdown @@ -149,7 +149,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Configuration Key. * `update` - (Defaults to 30 minutes) Used when updating the App Configuration Key. diff --git a/website/docs/r/app_service.html.markdown b/website/docs/r/app_service.html.markdown index 685b5ef72822..08fea7cdd8e7 100644 --- a/website/docs/r/app_service.html.markdown +++ b/website/docs/r/app_service.html.markdown @@ -497,7 +497,7 @@ A `source_control` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service. * `update` - (Defaults to 30 minutes) Used when updating the App Service. diff --git a/website/docs/r/app_service_active_slot.html.markdown b/website/docs/r/app_service_active_slot.html.markdown index 0724e4dc3431..9d41a9c1e860 100644 --- a/website/docs/r/app_service_active_slot.html.markdown +++ b/website/docs/r/app_service_active_slot.html.markdown @@ -57,7 +57,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Active Slot. * `update` - (Defaults to 30 minutes) Used when updating the App Service Active Slot. diff --git a/website/docs/r/app_service_certificate.html.markdown b/website/docs/r/app_service_certificate.html.markdown index 072a84dbe69e..8a85638d82fc 100644 --- a/website/docs/r/app_service_certificate.html.markdown +++ b/website/docs/r/app_service_certificate.html.markdown @@ -83,7 +83,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Certificate. * `update` - (Defaults to 30 minutes) Used when updating the App Service Certificate. diff --git a/website/docs/r/app_service_certificate_order.html.markdown b/website/docs/r/app_service_certificate_order.html.markdown index 897ef10005cb..93858cc5d040 100644 --- a/website/docs/r/app_service_certificate_order.html.markdown +++ b/website/docs/r/app_service_certificate_order.html.markdown @@ -92,7 +92,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Certificate Order. * `update` - (Defaults to 30 minutes) Used when updating the App Service Certificate Order. diff --git a/website/docs/r/app_service_custom_hostname_binding.html.markdown b/website/docs/r/app_service_custom_hostname_binding.html.markdown index a333073776d2..97c0ef9dd415 100644 --- a/website/docs/r/app_service_custom_hostname_binding.html.markdown +++ b/website/docs/r/app_service_custom_hostname_binding.html.markdown @@ -80,7 +80,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Custom Hostname Binding. * `update` - (Defaults to 30 minutes) Used when updating the App Service Custom Hostname Binding. diff --git a/website/docs/r/app_service_environment.html.markdown b/website/docs/r/app_service_environment.html.markdown index ba8b5e3c69f3..bb961f87f68f 100644 --- a/website/docs/r/app_service_environment.html.markdown +++ b/website/docs/r/app_service_environment.html.markdown @@ -103,7 +103,7 @@ A `cluster_setting` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 4 hours) Used when creating the App Service Environment. * `update` - (Defaults to 4 hours) Used when updating the App Service Environment. diff --git a/website/docs/r/app_service_environment_v3.html.markdown b/website/docs/r/app_service_environment_v3.html.markdown index a8a732877217..e57a29a91f9f 100644 --- a/website/docs/r/app_service_environment_v3.html.markdown +++ b/website/docs/r/app_service_environment_v3.html.markdown @@ -145,7 +145,7 @@ An `inbound_network_dependencies` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 6 hours) Used when creating the 3rd Generation (v3) App Service Environment. * `update` - (Defaults to 6 hours) Used when updating the 3rd Generation (v3) App Service Environment. diff --git a/website/docs/r/app_service_managed_certificate.html.markdown b/website/docs/r/app_service_managed_certificate.html.markdown index bf364b3b037d..3e1493120a6e 100644 --- a/website/docs/r/app_service_managed_certificate.html.markdown +++ b/website/docs/r/app_service_managed_certificate.html.markdown @@ -115,7 +115,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Managed Certificate. diff --git a/website/docs/r/app_service_plan.html.markdown b/website/docs/r/app_service_plan.html.markdown index eb64b16d686e..d10c4df43d73 100644 --- a/website/docs/r/app_service_plan.html.markdown +++ b/website/docs/r/app_service_plan.html.markdown @@ -147,7 +147,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the App Service Plan. * `update` - (Defaults to 60 minutes) Used when updating the App Service Plan. diff --git a/website/docs/r/app_service_public_certificate.html.markdown b/website/docs/r/app_service_public_certificate.html.markdown index e67c99daa70a..b737a8536e84 100644 --- a/website/docs/r/app_service_public_certificate.html.markdown +++ b/website/docs/r/app_service_public_certificate.html.markdown @@ -69,7 +69,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Public Certificate. * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Public Certificate. diff --git a/website/docs/r/app_service_slot.html.markdown b/website/docs/r/app_service_slot.html.markdown index 311518abeaf8..ad6b5c3b44aa 100644 --- a/website/docs/r/app_service_slot.html.markdown +++ b/website/docs/r/app_service_slot.html.markdown @@ -500,7 +500,7 @@ The `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Slot. * `update` - (Defaults to 30 minutes) Used when updating the App Service Slot. diff --git a/website/docs/r/app_service_slot_custom_hostname_binding.html.markdown b/website/docs/r/app_service_slot_custom_hostname_binding.html.markdown index fc1165c4e722..a9b8574c266d 100644 --- a/website/docs/r/app_service_slot_custom_hostname_binding.html.markdown +++ b/website/docs/r/app_service_slot_custom_hostname_binding.html.markdown @@ -72,7 +72,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Custom Hostname Binding. * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Custom Hostname Binding. diff --git a/website/docs/r/app_service_slot_virtual_network_swift_connection.html.markdown b/website/docs/r/app_service_slot_virtual_network_swift_connection.html.markdown index 828a676226b7..3c5f07ff3844 100644 --- a/website/docs/r/app_service_slot_virtual_network_swift_connection.html.markdown +++ b/website/docs/r/app_service_slot_virtual_network_swift_connection.html.markdown @@ -93,7 +93,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Virtual Network Association. * `update` - (Defaults to 30 minutes) Used when updating the App Service Virtual Network Association. diff --git a/website/docs/r/app_service_source_control.html.markdown b/website/docs/r/app_service_source_control.html.markdown index cf71802203f4..e12babe02cd1 100644 --- a/website/docs/r/app_service_source_control.html.markdown +++ b/website/docs/r/app_service_source_control.html.markdown @@ -112,7 +112,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Source Control. * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Source Control. diff --git a/website/docs/r/app_service_source_control_slot.html.markdown b/website/docs/r/app_service_source_control_slot.html.markdown index 8bb399fbdb64..d4a205e7e8d8 100644 --- a/website/docs/r/app_service_source_control_slot.html.markdown +++ b/website/docs/r/app_service_source_control_slot.html.markdown @@ -123,7 +123,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Source Control Slot. * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Source Control Slot. diff --git a/website/docs/r/app_service_source_control_token.html.markdown b/website/docs/r/app_service_source_control_token.html.markdown index 552ad3dfdfa0..43e087b0f593 100644 --- a/website/docs/r/app_service_source_control_token.html.markdown +++ b/website/docs/r/app_service_source_control_token.html.markdown @@ -36,7 +36,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Source Control Token. * `update` - (Defaults to 30 minutes) Used when updating the App Service Source Control Token. diff --git a/website/docs/r/app_service_virtual_network_swift_connection.html.markdown b/website/docs/r/app_service_virtual_network_swift_connection.html.markdown index 7a6604192873..ec4bf2e09078 100644 --- a/website/docs/r/app_service_virtual_network_swift_connection.html.markdown +++ b/website/docs/r/app_service_virtual_network_swift_connection.html.markdown @@ -151,7 +151,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the App Service Virtual Network Association. * `update` - (Defaults to 30 minutes) Used when updating the App Service Virtual Network Association. diff --git a/website/docs/r/application_gateway.html.markdown b/website/docs/r/application_gateway.html.markdown index da6090f774ce..edb1ef1a7ce9 100644 --- a/website/docs/r/application_gateway.html.markdown +++ b/website/docs/r/application_gateway.html.markdown @@ -849,7 +849,7 @@ A `rewrite_rule_set` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the Application Gateway. * `update` - (Defaults to 90 minutes) Used when updating the Application Gateway. diff --git a/website/docs/r/application_insights.html.markdown b/website/docs/r/application_insights.html.markdown index ffbba5e0d903..52e103b883c4 100644 --- a/website/docs/r/application_insights.html.markdown +++ b/website/docs/r/application_insights.html.markdown @@ -118,7 +118,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Application Insights Component. * `update` - (Defaults to 30 minutes) Used when updating the Application Insights Component. diff --git a/website/docs/r/application_insights_analytics_item.html.markdown b/website/docs/r/application_insights_analytics_item.html.markdown index 273c6ea0acbc..dc5f58cf2731 100644 --- a/website/docs/r/application_insights_analytics_item.html.markdown +++ b/website/docs/r/application_insights_analytics_item.html.markdown @@ -64,7 +64,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Application Insights Analytics Item. * `update` - (Defaults to 30 minutes) Used when updating the Application Insights Analytics Item. diff --git a/website/docs/r/application_insights_api_key.html.markdown b/website/docs/r/application_insights_api_key.html.markdown index 2f2393e3e8ed..6eb5ffd3cfc2 100644 --- a/website/docs/r/application_insights_api_key.html.markdown +++ b/website/docs/r/application_insights_api_key.html.markdown @@ -92,7 +92,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Application Insights API Key. * `update` - (Defaults to 30 minutes) Used when updating the Application Insights API Key. diff --git a/website/docs/r/application_insights_smart_detection_rule.html.markdown b/website/docs/r/application_insights_smart_detection_rule.html.markdown index 97b6876a3157..6fe954d7f128 100644 --- a/website/docs/r/application_insights_smart_detection_rule.html.markdown +++ b/website/docs/r/application_insights_smart_detection_rule.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Application Insights Smart Detection Rule * `update` - (Defaults to 30 minutes) Used when updating the Application Insights Smart Detection Rule. diff --git a/website/docs/r/application_insights_web_test.html.markdown b/website/docs/r/application_insights_web_test.html.markdown index c4d00cebfcce..91a44a582cfc 100644 --- a/website/docs/r/application_insights_web_test.html.markdown +++ b/website/docs/r/application_insights_web_test.html.markdown @@ -90,7 +90,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Application Insights Web Test. * `update` - (Defaults to 30 minutes) Used when updating the Application Insights Web Test. diff --git a/website/docs/r/application_insights_workbook.html.markdown b/website/docs/r/application_insights_workbook.html.markdown index 84399ade0038..ddbe5801ce60 100644 --- a/website/docs/r/application_insights_workbook.html.markdown +++ b/website/docs/r/application_insights_workbook.html.markdown @@ -94,7 +94,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Workbook. * `read` - (Defaults to 5 minutes) Used when retrieving the Workbook. diff --git a/website/docs/r/application_insights_workbook_template.html.markdown b/website/docs/r/application_insights_workbook_template.html.markdown index c5482a97310e..84fa04155b05 100644 --- a/website/docs/r/application_insights_workbook_template.html.markdown +++ b/website/docs/r/application_insights_workbook_template.html.markdown @@ -130,7 +130,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Application Insights Workbook Template. * `read` - (Defaults to 5 minutes) Used when retrieving the Application Insights Workbook Template. diff --git a/website/docs/r/application_security_group.html.markdown b/website/docs/r/application_security_group.html.markdown index 108857da9c21..c1dd9e0f8b63 100644 --- a/website/docs/r/application_security_group.html.markdown +++ b/website/docs/r/application_security_group.html.markdown @@ -49,7 +49,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Application Security Group. * `update` - (Defaults to 30 minutes) Used when updating the Application Security Group. diff --git a/website/docs/r/attestation.html.markdown b/website/docs/r/attestation.html.markdown index 3ec83f7eca22..abe3dfa09db6 100644 --- a/website/docs/r/attestation.html.markdown +++ b/website/docs/r/attestation.html.markdown @@ -57,7 +57,7 @@ The following Attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Attestation Provider. * `read` - (Defaults to 5 minutes) Used when retrieving the Attestation Provider. diff --git a/website/docs/r/automation_account.html.markdown b/website/docs/r/automation_account.html.markdown index b4443cd50a53..5511ecfc81c6 100644 --- a/website/docs/r/automation_account.html.markdown +++ b/website/docs/r/automation_account.html.markdown @@ -86,7 +86,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Account. * `update` - (Defaults to 30 minutes) Used when updating the Automation Account. diff --git a/website/docs/r/automation_certificate.html.markdown b/website/docs/r/automation_certificate.html.markdown index b4521e0cc7c0..73ff29b0ea85 100644 --- a/website/docs/r/automation_certificate.html.markdown +++ b/website/docs/r/automation_certificate.html.markdown @@ -63,7 +63,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Certificate. * `update` - (Defaults to 30 minutes) Used when updating the Automation Certificate. diff --git a/website/docs/r/automation_connection.html.markdown b/website/docs/r/automation_connection.html.markdown index 88386b15e87e..d850c9ded5f1 100644 --- a/website/docs/r/automation_connection.html.markdown +++ b/website/docs/r/automation_connection.html.markdown @@ -76,7 +76,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Connection. * `update` - (Defaults to 30 minutes) Used when updating the Automation Connection. diff --git a/website/docs/r/automation_connection_certificate.html.markdown b/website/docs/r/automation_connection_certificate.html.markdown index 154b333139bf..7c9f1424788a 100644 --- a/website/docs/r/automation_connection_certificate.html.markdown +++ b/website/docs/r/automation_connection_certificate.html.markdown @@ -71,7 +71,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Connection. * `update` - (Defaults to 30 minutes) Used when updating the Automation Connection. diff --git a/website/docs/r/automation_connection_classic_certificate.html.markdown b/website/docs/r/automation_connection_classic_certificate.html.markdown index f02cccbbc3ed..27bdce45f825 100644 --- a/website/docs/r/automation_connection_classic_certificate.html.markdown +++ b/website/docs/r/automation_connection_classic_certificate.html.markdown @@ -67,7 +67,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Connection. * `update` - (Defaults to 30 minutes) Used when updating the Automation Connection. diff --git a/website/docs/r/automation_connection_service_principal.html.markdown b/website/docs/r/automation_connection_service_principal.html.markdown index 1d5281a52677..950182405568 100644 --- a/website/docs/r/automation_connection_service_principal.html.markdown +++ b/website/docs/r/automation_connection_service_principal.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Connection. * `update` - (Defaults to 30 minutes) Used when updating the Automation Connection. diff --git a/website/docs/r/automation_credential.html.markdown b/website/docs/r/automation_credential.html.markdown index cf02338d127b..4d8586e198b3 100644 --- a/website/docs/r/automation_credential.html.markdown +++ b/website/docs/r/automation_credential.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Credential. * `update` - (Defaults to 30 minutes) Used when updating the Automation Credential. diff --git a/website/docs/r/automation_dsc_configuration.html.markdown b/website/docs/r/automation_dsc_configuration.html.markdown index b02fd8ca47e3..70ec667222f5 100644 --- a/website/docs/r/automation_dsc_configuration.html.markdown +++ b/website/docs/r/automation_dsc_configuration.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation DSC Configuration. * `update` - (Defaults to 30 minutes) Used when updating the Automation DSC Configuration. diff --git a/website/docs/r/automation_dsc_nodeconfiguration.html.markdown b/website/docs/r/automation_dsc_nodeconfiguration.html.markdown index 3fd720b0cd59..c5603241645d 100644 --- a/website/docs/r/automation_dsc_nodeconfiguration.html.markdown +++ b/website/docs/r/automation_dsc_nodeconfiguration.html.markdown @@ -86,7 +86,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation DSC Node Configuration. * `update` - (Defaults to 30 minutes) Used when updating the Automation DSC Node Configuration. diff --git a/website/docs/r/automation_job_schedule.html.markdown b/website/docs/r/automation_job_schedule.html.markdown index 4e66d04d66d7..e0feb1baefb6 100644 --- a/website/docs/r/automation_job_schedule.html.markdown +++ b/website/docs/r/automation_job_schedule.html.markdown @@ -56,7 +56,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Job Schedule. * `update` - (Defaults to 30 minutes) Used when updating the Automation Job Schedule. diff --git a/website/docs/r/automation_module.html.markdown b/website/docs/r/automation_module.html.markdown index 1d5c9abcd617..d1a3724ce2f6 100644 --- a/website/docs/r/automation_module.html.markdown +++ b/website/docs/r/automation_module.html.markdown @@ -60,7 +60,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Module. * `update` - (Defaults to 30 minutes) Used when updating the Automation Module. diff --git a/website/docs/r/automation_runbook.html.markdown b/website/docs/r/automation_runbook.html.markdown index 0d568af18e4e..5e61ba6bad9d 100644 --- a/website/docs/r/automation_runbook.html.markdown +++ b/website/docs/r/automation_runbook.html.markdown @@ -116,7 +116,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Runbook. * `update` - (Defaults to 30 minutes) Used when updating the Automation Runbook. diff --git a/website/docs/r/automation_schedule.html.markdown b/website/docs/r/automation_schedule.html.markdown index 364370cb5ccc..507dd509c097 100644 --- a/website/docs/r/automation_schedule.html.markdown +++ b/website/docs/r/automation_schedule.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Schedule. * `update` - (Defaults to 30 minutes) Used when updating the Automation Schedule. diff --git a/website/docs/r/automation_variable_bool.html.markdown b/website/docs/r/automation_variable_bool.html.markdown index 7f43af9ce8a2..e02abaced30e 100644 --- a/website/docs/r/automation_variable_bool.html.markdown +++ b/website/docs/r/automation_variable_bool.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Bool Variable. * `update` - (Defaults to 30 minutes) Used when updating the Automation Bool Variable. diff --git a/website/docs/r/automation_variable_datetime.html.markdown b/website/docs/r/automation_variable_datetime.html.markdown index 3e9aeb650b34..4c79c2bfe048 100644 --- a/website/docs/r/automation_variable_datetime.html.markdown +++ b/website/docs/r/automation_variable_datetime.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation DateTime Variable. * `update` - (Defaults to 30 minutes) Used when updating the Automation DateTime Variable. diff --git a/website/docs/r/automation_variable_int.html.markdown b/website/docs/r/automation_variable_int.html.markdown index 132adc417892..67d5adc5fdee 100644 --- a/website/docs/r/automation_variable_int.html.markdown +++ b/website/docs/r/automation_variable_int.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Int Variable. * `update` - (Defaults to 30 minutes) Used when updating the Automation Int Variable. diff --git a/website/docs/r/automation_variable_string.html.markdown b/website/docs/r/automation_variable_string.html.markdown index a1a0df5a5c70..b567c459fa47 100644 --- a/website/docs/r/automation_variable_string.html.markdown +++ b/website/docs/r/automation_variable_string.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation String Variable. * `update` - (Defaults to 30 minutes) Used when updating the Automation String Variable. diff --git a/website/docs/r/automation_webhook.html.markdown b/website/docs/r/automation_webhook.html.markdown index c47efc198fd5..a52793377d5d 100644 --- a/website/docs/r/automation_webhook.html.markdown +++ b/website/docs/r/automation_webhook.html.markdown @@ -87,7 +87,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Automation Webhook. * `update` - (Defaults to 30 minutes) Used when updating the Automation Webhook. diff --git a/website/docs/r/availability_set.html.markdown b/website/docs/r/availability_set.html.markdown index 2167531579f2..73b06530d48a 100644 --- a/website/docs/r/availability_set.html.markdown +++ b/website/docs/r/availability_set.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Availability Set. * `update` - (Defaults to 30 minutes) Used when updating the Availability Set. diff --git a/website/docs/r/azurerm_security_center_server_vulnerability_assessment.html.markdown b/website/docs/r/azurerm_security_center_server_vulnerability_assessment.html.markdown index 1d93f3b898eb..487fad33dde5 100644 --- a/website/docs/r/azurerm_security_center_server_vulnerability_assessment.html.markdown +++ b/website/docs/r/azurerm_security_center_server_vulnerability_assessment.html.markdown @@ -99,7 +99,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the Advanced Threat Protection. * `read` - (Defaults to 5 minutes) Used when retrieving the Advanced Threat Protection. diff --git a/website/docs/r/azurerm_sentinel_alert_rule_machine_learning_behavior_analytics.html.markdown b/website/docs/r/azurerm_sentinel_alert_rule_machine_learning_behavior_analytics.html.markdown index 28a3bdf2596d..85998bf9f17a 100644 --- a/website/docs/r/azurerm_sentinel_alert_rule_machine_learning_behavior_analytics.html.markdown +++ b/website/docs/r/azurerm_sentinel_alert_rule_machine_learning_behavior_analytics.html.markdown @@ -67,7 +67,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Sentinel Machine Learning Behavior Analytics Alert Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel Machine Learning Behavior Analytics Alert Rule. diff --git a/website/docs/r/backup_container_storage_account.html.markdown b/website/docs/r/backup_container_storage_account.html.markdown index 793f4d2f23d4..78dce3535d92 100644 --- a/website/docs/r/backup_container_storage_account.html.markdown +++ b/website/docs/r/backup_container_storage_account.html.markdown @@ -61,7 +61,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Storage Account Container. * `update` - (Defaults to 30 minutes) Used when updating the Backup Storage Account Container. diff --git a/website/docs/r/backup_policy_file_share.html.markdown b/website/docs/r/backup_policy_file_share.html.markdown index 58a9d673ddca..ce5e45d1f6fa 100644 --- a/website/docs/r/backup_policy_file_share.html.markdown +++ b/website/docs/r/backup_policy_file_share.html.markdown @@ -139,7 +139,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the File Share Backup Policy. * `update` - (Defaults to 30 minutes) Used when updating the File Share Backup Policy. diff --git a/website/docs/r/backup_policy_vm.html.markdown b/website/docs/r/backup_policy_vm.html.markdown index ee8cbbc21e8b..a3e92f7614fd 100644 --- a/website/docs/r/backup_policy_vm.html.markdown +++ b/website/docs/r/backup_policy_vm.html.markdown @@ -151,7 +151,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the VM Backup Policy. * `update` - (Defaults to 30 minutes) Used when updating the VM Backup Policy. diff --git a/website/docs/r/backup_protected_file_share.html.markdown b/website/docs/r/backup_protected_file_share.html.markdown index 0f9afb8b91a9..6a5b1df5cfaa 100644 --- a/website/docs/r/backup_protected_file_share.html.markdown +++ b/website/docs/r/backup_protected_file_share.html.markdown @@ -93,7 +93,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 80 minutes) Used when creating the Backup File Share. * `update` - (Defaults to 80 minutes) Used when updating the Backup File Share. diff --git a/website/docs/r/backup_protected_vm.html.markdown b/website/docs/r/backup_protected_vm.html.markdown index 48d29c188c2c..cea7910d5d5a 100644 --- a/website/docs/r/backup_protected_vm.html.markdown +++ b/website/docs/r/backup_protected_vm.html.markdown @@ -76,7 +76,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 80 minutes) Used when creating the Backup Protected Virtual Machine. * `update` - (Defaults to 80 minutes) Used when updating the Backup Protected Virtual Machine. diff --git a/website/docs/r/bastion_host.html.markdown b/website/docs/r/bastion_host.html.markdown index 9a002a70840d..5b59280277e7 100644 --- a/website/docs/r/bastion_host.html.markdown +++ b/website/docs/r/bastion_host.html.markdown @@ -116,7 +116,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Bastion Host. * `update` - (Defaults to 30 minutes) Used when updating the Bastion Host. diff --git a/website/docs/r/batch_account.html.markdown b/website/docs/r/batch_account.html.markdown index b23cab2ff10f..5dd7ddd6501a 100644 --- a/website/docs/r/batch_account.html.markdown +++ b/website/docs/r/batch_account.html.markdown @@ -120,7 +120,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Batch Account. * `update` - (Defaults to 30 minutes) Used when updating the Batch Account. diff --git a/website/docs/r/batch_application.html.markdown b/website/docs/r/batch_application.html.markdown index 036bece095ba..dbb53c4d2284 100644 --- a/website/docs/r/batch_application.html.markdown +++ b/website/docs/r/batch_application.html.markdown @@ -65,7 +65,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Batch Application. * `update` - (Defaults to 30 minutes) Used when updating the Batch Application. diff --git a/website/docs/r/batch_certificate.html.markdown b/website/docs/r/batch_certificate.html.markdown index 5d0b1f538cf0..8a8d08cf39a9 100644 --- a/website/docs/r/batch_certificate.html.markdown +++ b/website/docs/r/batch_certificate.html.markdown @@ -78,7 +78,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Batch Certificate. * `update` - (Defaults to 30 minutes) Used when updating the Batch Certificate. diff --git a/website/docs/r/batch_job.html.markdown b/website/docs/r/batch_job.html.markdown index 0ea34bbae73a..47fbdd79da4b 100644 --- a/website/docs/r/batch_job.html.markdown +++ b/website/docs/r/batch_job.html.markdown @@ -79,7 +79,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the Batch Job. * `read` - (Defaults to 5 minutes) Used when retrieving the Batch Job. diff --git a/website/docs/r/batch_pool.html.markdown b/website/docs/r/batch_pool.html.markdown index 9536de0e643c..c7f54f441585 100644 --- a/website/docs/r/batch_pool.html.markdown +++ b/website/docs/r/batch_pool.html.markdown @@ -325,7 +325,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Batch Pool. * `update` - (Defaults to 30 minutes) Used when updating the Batch Pool. diff --git a/website/docs/r/blueprint_assignment.html.markdown b/website/docs/r/blueprint_assignment.html.markdown index 6e8b0c3b0b67..bb79c89889f8 100644 --- a/website/docs/r/blueprint_assignment.html.markdown +++ b/website/docs/r/blueprint_assignment.html.markdown @@ -151,7 +151,7 @@ An `identity` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Blueprint Assignment. * `update` - (Defaults to 30 minutes) Used when updating the Blueprint Assignment. diff --git a/website/docs/r/bot_channel_alexa.html.markdown b/website/docs/r/bot_channel_alexa.html.markdown index 06a07b9f6c7a..a1c3d224dfac 100644 --- a/website/docs/r/bot_channel_alexa.html.markdown +++ b/website/docs/r/bot_channel_alexa.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Alexa Integration for a Bot Channel. * `update` - (Defaults to 30 minutes) Used when updating the Alexa Integration for a Bot Channel. diff --git a/website/docs/r/bot_channel_direct_line_speech.html.markdown b/website/docs/r/bot_channel_direct_line_speech.html.markdown index 6139dddae970..4c60ebb43678 100644 --- a/website/docs/r/bot_channel_direct_line_speech.html.markdown +++ b/website/docs/r/bot_channel_direct_line_speech.html.markdown @@ -71,7 +71,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Direct Line Speech Channel. * `update` - (Defaults to 30 minutes) Used when updating the Direct Line Speech Channel. diff --git a/website/docs/r/bot_channel_directline.html.markdown b/website/docs/r/bot_channel_directline.html.markdown index 9728670e6e3c..4b1461ef2381 100644 --- a/website/docs/r/bot_channel_directline.html.markdown +++ b/website/docs/r/bot_channel_directline.html.markdown @@ -85,7 +85,7 @@ A `site` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Directline Channel. * `update` - (Defaults to 30 minutes) Used when updating the Directline Channel. diff --git a/website/docs/r/bot_channel_email.html.markdown b/website/docs/r/bot_channel_email.html.markdown index 2cb0bb98656f..413785b85727 100644 --- a/website/docs/r/bot_channel_email.html.markdown +++ b/website/docs/r/bot_channel_email.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Email Integration for a Bot Channel. * `update` - (Defaults to 30 minutes) Used when updating the Email Integration for a Bot Channel. diff --git a/website/docs/r/bot_channel_facebook.html.markdown b/website/docs/r/bot_channel_facebook.html.markdown index bcdb370cb604..fb654b07a098 100644 --- a/website/docs/r/bot_channel_facebook.html.markdown +++ b/website/docs/r/bot_channel_facebook.html.markdown @@ -76,7 +76,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Facebook Integration for a Bot Channel. * `update` - (Defaults to 30 minutes) Used when updating the Facebook Integration for a Bot Channel. diff --git a/website/docs/r/bot_channel_line.html.markdown b/website/docs/r/bot_channel_line.html.markdown index c3df1016b318..b7ab6c52663a 100644 --- a/website/docs/r/bot_channel_line.html.markdown +++ b/website/docs/r/bot_channel_line.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Line Integration for a Bot Channel. * `update` - (Defaults to 30 minutes) Used when updating the Line Integration for a Bot Channel. diff --git a/website/docs/r/bot_channel_ms_teams.html.markdown b/website/docs/r/bot_channel_ms_teams.html.markdown index 2939b2f4a78d..2f74e5eb104b 100644 --- a/website/docs/r/bot_channel_ms_teams.html.markdown +++ b/website/docs/r/bot_channel_ms_teams.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Microsoft Teams Integration for a Bot Channel. * `update` - (Defaults to 30 minutes) Used when updating the Microsoft Teams Integration for a Bot Channel. diff --git a/website/docs/r/bot_channel_slack.html.markdown b/website/docs/r/bot_channel_slack.html.markdown index 4b875f48cbb7..d15e12bec8b0 100644 --- a/website/docs/r/bot_channel_slack.html.markdown +++ b/website/docs/r/bot_channel_slack.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Slack Integration for a Bot Channel. * `update` - (Defaults to 30 minutes) Used when updating the Slack Integration for a Bot Channel. diff --git a/website/docs/r/bot_channel_sms.html.markdown b/website/docs/r/bot_channel_sms.html.markdown index 7f732c27c0df..aa6c5b5d2aa2 100644 --- a/website/docs/r/bot_channel_sms.html.markdown +++ b/website/docs/r/bot_channel_sms.html.markdown @@ -64,7 +64,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SMS Integration for a Bot Channel. * `update` - (Defaults to 30 minutes) Used when updating the SMS Integration for a Bot Channel. diff --git a/website/docs/r/bot_channel_web_chat.html.markdown b/website/docs/r/bot_channel_web_chat.html.markdown index 288ba9143d34..722324241d53 100644 --- a/website/docs/r/bot_channel_web_chat.html.markdown +++ b/website/docs/r/bot_channel_web_chat.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Web Chat Channel. * `update` - (Defaults to 30 minutes) Used when updating the Web Chat Channel. diff --git a/website/docs/r/bot_channels_registration.html.markdown b/website/docs/r/bot_channels_registration.html.markdown index 622c25e1c080..5b6fd584c9d4 100644 --- a/website/docs/r/bot_channels_registration.html.markdown +++ b/website/docs/r/bot_channels_registration.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Bot Channels Registration. * `update` - (Defaults to 30 minutes) Used when updating the Bot Channels Registration. diff --git a/website/docs/r/bot_connection.html.markdown b/website/docs/r/bot_connection.html.markdown index 3b62f6d949c1..add19cf3fee6 100644 --- a/website/docs/r/bot_connection.html.markdown +++ b/website/docs/r/bot_connection.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Bot Connection. * `update` - (Defaults to 30 minutes) Used when updating the Bot Connection. diff --git a/website/docs/r/bot_healthbot.html.markdown b/website/docs/r/bot_healthbot.html.markdown index 5f6d0df6a386..a155f75e1c8f 100644 --- a/website/docs/r/bot_healthbot.html.markdown +++ b/website/docs/r/bot_healthbot.html.markdown @@ -56,7 +56,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating a Healthbot Service. * `read` - (Defaults to 5 minutes) Used when retrieving a Healthbot Service. diff --git a/website/docs/r/bot_service_azure_bot.html.markdown b/website/docs/r/bot_service_azure_bot.html.markdown index 13a733d090f7..b164d21e202b 100644 --- a/website/docs/r/bot_service_azure_bot.html.markdown +++ b/website/docs/r/bot_service_azure_bot.html.markdown @@ -96,7 +96,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Bot Service. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Bot Service. diff --git a/website/docs/r/bot_web_app.html.markdown b/website/docs/r/bot_web_app.html.markdown index af06e82516c5..92b188eade47 100644 --- a/website/docs/r/bot_web_app.html.markdown +++ b/website/docs/r/bot_web_app.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Bot Web App. * `update` - (Defaults to 30 minutes) Used when updating the Bot Web App. diff --git a/website/docs/r/capacity_reservation.html.markdown b/website/docs/r/capacity_reservation.html.markdown index e79ec0af2394..5f015feb11f6 100644 --- a/website/docs/r/capacity_reservation.html.markdown +++ b/website/docs/r/capacity_reservation.html.markdown @@ -64,7 +64,7 @@ The following Attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Capacity Reservation. * `read` - (Defaults to 5 minutes) Used when retrieving the Capacity Reservation. diff --git a/website/docs/r/capacity_reservation_group.html.markdown b/website/docs/r/capacity_reservation_group.html.markdown index ffc29668d4a7..475d9c3f645f 100644 --- a/website/docs/r/capacity_reservation_group.html.markdown +++ b/website/docs/r/capacity_reservation_group.html.markdown @@ -47,7 +47,7 @@ The following Attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Capacity Reservation Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Capacity Reservation Group. diff --git a/website/docs/r/cdn_endpoint.html.markdown b/website/docs/r/cdn_endpoint.html.markdown index b30bf10b1fbe..dfb2a05bae93 100644 --- a/website/docs/r/cdn_endpoint.html.markdown +++ b/website/docs/r/cdn_endpoint.html.markdown @@ -404,7 +404,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CDN Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the CDN Endpoint. diff --git a/website/docs/r/cdn_endpoint_custom_domain.html.markdown b/website/docs/r/cdn_endpoint_custom_domain.html.markdown index e41591009d3c..2fac5ed85909 100644 --- a/website/docs/r/cdn_endpoint_custom_domain.html.markdown +++ b/website/docs/r/cdn_endpoint_custom_domain.html.markdown @@ -108,7 +108,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts The `timeouts` block allows you to -specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 12 hours) Used when creating the Custom Domain for this CDN Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the CDN Endpoint Custom Domain. diff --git a/website/docs/r/cdn_frontdoor_endpoint.html.markdown b/website/docs/r/cdn_frontdoor_endpoint.html.markdown index 51ed09ea7353..aaf56ec25096 100644 --- a/website/docs/r/cdn_frontdoor_endpoint.html.markdown +++ b/website/docs/r/cdn_frontdoor_endpoint.html.markdown @@ -59,7 +59,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CDN FrontDoor Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Endpoint. diff --git a/website/docs/r/cdn_frontdoor_origin.html.markdown b/website/docs/r/cdn_frontdoor_origin.html.markdown index 21d483d8f78b..ababec5feb41 100644 --- a/website/docs/r/cdn_frontdoor_origin.html.markdown +++ b/website/docs/r/cdn_frontdoor_origin.html.markdown @@ -177,7 +177,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CDN FrontDoor Origin. * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Origin. diff --git a/website/docs/r/cdn_frontdoor_origin_group.html.markdown b/website/docs/r/cdn_frontdoor_origin_group.html.markdown index 42430ed0642e..ed7b71a06a87 100644 --- a/website/docs/r/cdn_frontdoor_origin_group.html.markdown +++ b/website/docs/r/cdn_frontdoor_origin_group.html.markdown @@ -94,7 +94,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CDN FrontDoor Origin Group. * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Origin Group. diff --git a/website/docs/r/cdn_frontdoor_profile.html.markdown b/website/docs/r/cdn_frontdoor_profile.html.markdown index bdf171f2abac..989a27811a83 100644 --- a/website/docs/r/cdn_frontdoor_profile.html.markdown +++ b/website/docs/r/cdn_frontdoor_profile.html.markdown @@ -53,7 +53,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CDN FrontDoor Profile. * `update` - (Defaults to 30 minutes) Used when updating the CDN FrontDoor Profile. diff --git a/website/docs/r/cdn_frontdoor_rule_set.html.markdown b/website/docs/r/cdn_frontdoor_rule_set.html.markdown index 31550b81ae6c..3477724205d7 100644 --- a/website/docs/r/cdn_frontdoor_rule_set.html.markdown +++ b/website/docs/r/cdn_frontdoor_rule_set.html.markdown @@ -47,7 +47,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CDN FrontDoor Rule Set. * `read` - (Defaults to 5 minutes) Used when retrieving the CDN FrontDoor Rule Set. diff --git a/website/docs/r/cdn_profile.html.markdown b/website/docs/r/cdn_profile.html.markdown index a6d0250dc205..17c3cc7efeba 100644 --- a/website/docs/r/cdn_profile.html.markdown +++ b/website/docs/r/cdn_profile.html.markdown @@ -57,7 +57,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CDN Profile. * `update` - (Defaults to 30 minutes) Used when updating the CDN Profile. diff --git a/website/docs/r/cognitive_account.html.markdown b/website/docs/r/cognitive_account.html.markdown index 152164adad31..3a8d8b5873ab 100644 --- a/website/docs/r/cognitive_account.html.markdown +++ b/website/docs/r/cognitive_account.html.markdown @@ -144,7 +144,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Cognitive Service Account. * `update` - (Defaults to 30 minutes) Used when updating the Cognitive Service Account. diff --git a/website/docs/r/cognitive_account_customer_managed_key.html.markdown b/website/docs/r/cognitive_account_customer_managed_key.html.markdown index 973e8e69e770..888e57b424f5 100644 --- a/website/docs/r/cognitive_account_customer_managed_key.html.markdown +++ b/website/docs/r/cognitive_account_customer_managed_key.html.markdown @@ -113,7 +113,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Cognitive Account Customer Managed Key. * `read` - (Defaults to 5 minutes) Used when retrieving the Cognitive Account Customer Managed Key. diff --git a/website/docs/r/communication_service.html.markdown b/website/docs/r/communication_service.html.markdown index 52f36045fa39..529e6450d7d9 100644 --- a/website/docs/r/communication_service.html.markdown +++ b/website/docs/r/communication_service.html.markdown @@ -51,7 +51,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Communication Service. * `read` - (Defaults to 5 minutes) Used when retrieving the Communication Service. diff --git a/website/docs/r/confidential_ledger.html.markdown b/website/docs/r/confidential_ledger.html.markdown index f5db8c49e242..fa3d2c64d5d8 100644 --- a/website/docs/r/confidential_ledger.html.markdown +++ b/website/docs/r/confidential_ledger.html.markdown @@ -84,7 +84,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Confidential Ledger. * `update` - (Defaults to 30 minutes) Used when updating the Confidential Ledger. diff --git a/website/docs/r/consumption_budget_management_group.html.markdown b/website/docs/r/consumption_budget_management_group.html.markdown index d8d104a9d9b9..efd0c027724d 100644 --- a/website/docs/r/consumption_budget_management_group.html.markdown +++ b/website/docs/r/consumption_budget_management_group.html.markdown @@ -164,7 +164,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Management Group Consumption Budget. * `read` - (Defaults to 5 minutes) Used when retrieving the Management Group Consumption Budget. diff --git a/website/docs/r/consumption_budget_resource_group.html.markdown b/website/docs/r/consumption_budget_resource_group.html.markdown index 96f3b233f894..a0f88fc646f6 100644 --- a/website/docs/r/consumption_budget_resource_group.html.markdown +++ b/website/docs/r/consumption_budget_resource_group.html.markdown @@ -180,7 +180,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Resource Group Consumption Budget. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group Consumption Budget. diff --git a/website/docs/r/consumption_budget_subscription.html.markdown b/website/docs/r/consumption_budget_subscription.html.markdown index 6afceb5cf5f8..d9c3c698e94b 100644 --- a/website/docs/r/consumption_budget_subscription.html.markdown +++ b/website/docs/r/consumption_budget_subscription.html.markdown @@ -184,7 +184,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subscription Consumption Budget. * `read` - (Defaults to 5 minutes) Used when retrieving the Subscription Consumption Budget. diff --git a/website/docs/r/container_connected_registry.html.markdown b/website/docs/r/container_connected_registry.html.markdown index be63ef12a619..db3eaf239d0e 100644 --- a/website/docs/r/container_connected_registry.html.markdown +++ b/website/docs/r/container_connected_registry.html.markdown @@ -111,7 +111,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Container Connected Registry. * `read` - (Defaults to 5 minutes) Used when retrieving the Container Connected Registry. diff --git a/website/docs/r/container_group.html.markdown b/website/docs/r/container_group.html.markdown index c6c3821186a3..7e0b07b920be 100644 --- a/website/docs/r/container_group.html.markdown +++ b/website/docs/r/container_group.html.markdown @@ -343,7 +343,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Container Group. diff --git a/website/docs/r/container_registry.html.markdown b/website/docs/r/container_registry.html.markdown index 0a2a34969e53..eb6e9ff8e74b 100644 --- a/website/docs/r/container_registry.html.markdown +++ b/website/docs/r/container_registry.html.markdown @@ -288,7 +288,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Container Registry. * `update` - (Defaults to 30 minutes) Used when updating the Container Registry. diff --git a/website/docs/r/container_registry_agent_pool.html.markdown b/website/docs/r/container_registry_agent_pool.html.markdown index dc854b289a25..36fffe285af7 100644 --- a/website/docs/r/container_registry_agent_pool.html.markdown +++ b/website/docs/r/container_registry_agent_pool.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Container Registry Agent Pool. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Container Registry Agent Pool. diff --git a/website/docs/r/container_registry_scope_map.html.markdown b/website/docs/r/container_registry_scope_map.html.markdown index afd82f48c5ba..3f54bb3d7b9a 100644 --- a/website/docs/r/container_registry_scope_map.html.markdown +++ b/website/docs/r/container_registry_scope_map.html.markdown @@ -65,7 +65,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Container Registry scope map. * `update` - (Defaults to 30 minutes) Used when updating the Container Registry scope map. diff --git a/website/docs/r/container_registry_task.html.markdown b/website/docs/r/container_registry_task.html.markdown index 930306e4c6a8..1110cc655ad1 100644 --- a/website/docs/r/container_registry_task.html.markdown +++ b/website/docs/r/container_registry_task.html.markdown @@ -269,7 +269,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Container Registry Task. * `read` - (Defaults to 5 minutes) Used when retrieving the Container Registry Task. diff --git a/website/docs/r/container_registry_token.html.markdown b/website/docs/r/container_registry_token.html.markdown index ed309c3cfe71..800f601c0c2f 100644 --- a/website/docs/r/container_registry_token.html.markdown +++ b/website/docs/r/container_registry_token.html.markdown @@ -74,7 +74,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Container Registry token. * `update` - (Defaults to 30 minutes) Used when updating the Container Registry token. diff --git a/website/docs/r/container_registry_webhook.html.markdown b/website/docs/r/container_registry_webhook.html.markdown index 070b66da5bc2..80ebdd626741 100644 --- a/website/docs/r/container_registry_webhook.html.markdown +++ b/website/docs/r/container_registry_webhook.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Container Registry Webhook. * `update` - (Defaults to 30 minutes) Used when updating the Container Registry Webhook. diff --git a/website/docs/r/cosmosdb_account.html.markdown b/website/docs/r/cosmosdb_account.html.markdown index 647e480fb946..1009927c3afd 100644 --- a/website/docs/r/cosmosdb_account.html.markdown +++ b/website/docs/r/cosmosdb_account.html.markdown @@ -274,7 +274,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 180 minutes) Used when creating the CosmosDB Account. * `update` - (Defaults to 180 minutes) Used when updating the CosmosDB Account. diff --git a/website/docs/r/cosmosdb_cassandra_cluster.html.markdown b/website/docs/r/cosmosdb_cassandra_cluster.html.markdown index db89c6e66dcb..07061b84787a 100644 --- a/website/docs/r/cosmosdb_cassandra_cluster.html.markdown +++ b/website/docs/r/cosmosdb_cassandra_cluster.html.markdown @@ -107,7 +107,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Cassandra Cluster. * `read` - (Defaults to 5 minutes) Used when retrieving the Cassandra Cluster. diff --git a/website/docs/r/cosmosdb_cassandra_datacenter.html.markdown b/website/docs/r/cosmosdb_cassandra_datacenter.html.markdown index a89f0bd2a14d..c819002e9723 100644 --- a/website/docs/r/cosmosdb_cassandra_datacenter.html.markdown +++ b/website/docs/r/cosmosdb_cassandra_datacenter.html.markdown @@ -112,7 +112,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Cassandra Datacenter. * `read` - (Defaults to 5 minutes) Used when retrieving the Cassandra Datacenter. diff --git a/website/docs/r/cosmosdb_cassandra_keyspace.html.markdown b/website/docs/r/cosmosdb_cassandra_keyspace.html.markdown index 746cad3e72b3..ae824d320165 100644 --- a/website/docs/r/cosmosdb_cassandra_keyspace.html.markdown +++ b/website/docs/r/cosmosdb_cassandra_keyspace.html.markdown @@ -79,7 +79,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB Cassandra KeySpace. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB Cassandra KeySpace. diff --git a/website/docs/r/cosmosdb_cassandra_table.html.markdown b/website/docs/r/cosmosdb_cassandra_table.html.markdown index 8ed74e72115f..94a8a48a0e14 100644 --- a/website/docs/r/cosmosdb_cassandra_table.html.markdown +++ b/website/docs/r/cosmosdb_cassandra_table.html.markdown @@ -131,7 +131,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB Cassandra KeySpace. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB Cassandra KeySpace. diff --git a/website/docs/r/cosmosdb_gremlin_database.html.markdown b/website/docs/r/cosmosdb_gremlin_database.html.markdown index 9f2972ade1fb..fdaada72c650 100644 --- a/website/docs/r/cosmosdb_gremlin_database.html.markdown +++ b/website/docs/r/cosmosdb_gremlin_database.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB Gremlin Database. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB Gremlin Database. diff --git a/website/docs/r/cosmosdb_gremlin_graph.html.markdown b/website/docs/r/cosmosdb_gremlin_graph.html.markdown index 9a562399dc5c..2748569e31e4 100644 --- a/website/docs/r/cosmosdb_gremlin_graph.html.markdown +++ b/website/docs/r/cosmosdb_gremlin_graph.html.markdown @@ -149,7 +149,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB Gremlin Graph. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB Gremlin Graph. diff --git a/website/docs/r/cosmosdb_mongo_collection.html.markdown b/website/docs/r/cosmosdb_mongo_collection.html.markdown index 5a8c1e1f595c..f4eaf0830a7a 100644 --- a/website/docs/r/cosmosdb_mongo_collection.html.markdown +++ b/website/docs/r/cosmosdb_mongo_collection.html.markdown @@ -91,7 +91,7 @@ The `system_indexes` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB Mongo Collection. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB Mongo Collection. diff --git a/website/docs/r/cosmosdb_mongo_database.html.markdown b/website/docs/r/cosmosdb_mongo_database.html.markdown index 963a493c34c2..e570c398fd56 100644 --- a/website/docs/r/cosmosdb_mongo_database.html.markdown +++ b/website/docs/r/cosmosdb_mongo_database.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB Mongo Database. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB Mongo Database. diff --git a/website/docs/r/cosmosdb_notebook_workspace.html.markdown b/website/docs/r/cosmosdb_notebook_workspace.html.markdown index 9c37221f5405..ce53c7e6d6e8 100644 --- a/website/docs/r/cosmosdb_notebook_workspace.html.markdown +++ b/website/docs/r/cosmosdb_notebook_workspace.html.markdown @@ -61,7 +61,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the =SQL Notebook Workspace. * `read` - (Defaults to 5 minutes) Used when retrieving the =SQL Notebook Workspace. diff --git a/website/docs/r/cosmosdb_sql_container.html.markdown b/website/docs/r/cosmosdb_sql_container.html.markdown index 31d2e017d386..cacd705166f7 100644 --- a/website/docs/r/cosmosdb_sql_container.html.markdown +++ b/website/docs/r/cosmosdb_sql_container.html.markdown @@ -167,7 +167,7 @@ A `spatial_index` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB SQL Container. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB SQL Container. diff --git a/website/docs/r/cosmosdb_sql_database.html.markdown b/website/docs/r/cosmosdb_sql_database.html.markdown index bcdd0fad3beb..69ec8059cc73 100644 --- a/website/docs/r/cosmosdb_sql_database.html.markdown +++ b/website/docs/r/cosmosdb_sql_database.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB SQL Database. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB SQL Database. diff --git a/website/docs/r/cosmosdb_sql_function.html.markdown b/website/docs/r/cosmosdb_sql_function.html.markdown index aebf4a4fe3d8..c30907727fce 100644 --- a/website/docs/r/cosmosdb_sql_function.html.markdown +++ b/website/docs/r/cosmosdb_sql_function.html.markdown @@ -58,7 +58,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL User Defined Function. * `read` - (Defaults to 5 minutes) Used when retrieving the SQL User Defined Function. diff --git a/website/docs/r/cosmosdb_sql_role_assignment.html.markdown b/website/docs/r/cosmosdb_sql_role_assignment.html.markdown index edb1c7cc650f..9bc6fa247536 100644 --- a/website/docs/r/cosmosdb_sql_role_assignment.html.markdown +++ b/website/docs/r/cosmosdb_sql_role_assignment.html.markdown @@ -83,7 +83,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Cosmos DB SQL Role Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Cosmos DB SQL Role Assignment. diff --git a/website/docs/r/cosmosdb_sql_role_definition.html.markdown b/website/docs/r/cosmosdb_sql_role_definition.html.markdown index 930a546ad015..283627ae25d7 100644 --- a/website/docs/r/cosmosdb_sql_role_definition.html.markdown +++ b/website/docs/r/cosmosdb_sql_role_definition.html.markdown @@ -86,7 +86,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Cosmos DB SQL Role Definition. * `read` - (Defaults to 5 minutes) Used when retrieving the Cosmos DB SQL Role Definition. diff --git a/website/docs/r/cosmosdb_sql_stored_procedure.html.markdown b/website/docs/r/cosmosdb_sql_stored_procedure.html.markdown index 4d31d20bd8d7..5dd8b3083470 100644 --- a/website/docs/r/cosmosdb_sql_stored_procedure.html.markdown +++ b/website/docs/r/cosmosdb_sql_stored_procedure.html.markdown @@ -71,7 +71,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB SQL Stored Procedure. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB SQL Stored Procedure. diff --git a/website/docs/r/cosmosdb_sql_trigger.html.markdown b/website/docs/r/cosmosdb_sql_trigger.html.markdown index e0fcd58388bf..a0e3ff205974 100644 --- a/website/docs/r/cosmosdb_sql_trigger.html.markdown +++ b/website/docs/r/cosmosdb_sql_trigger.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Trigger. * `read` - (Defaults to 5 minutes) Used when retrieving the SQL Trigger. diff --git a/website/docs/r/cosmosdb_table.html.markdown b/website/docs/r/cosmosdb_table.html.markdown index f7eadb9052c1..af6bbea7b6c0 100644 --- a/website/docs/r/cosmosdb_table.html.markdown +++ b/website/docs/r/cosmosdb_table.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the CosmosDB Table. * `update` - (Defaults to 30 minutes) Used when updating the CosmosDB Table. diff --git a/website/docs/r/custom_provider.html.markdown b/website/docs/r/custom_provider.html.markdown index d68df6a32fba..ce1f21c0df91 100644 --- a/website/docs/r/custom_provider.html.markdown +++ b/website/docs/r/custom_provider.html.markdown @@ -80,7 +80,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the resource. * `update` - (Defaults to 30 minutes) Used when updating the resource. diff --git a/website/docs/r/dashboard.html.markdown b/website/docs/r/dashboard.html.markdown index 78d58cc392b5..3579b9412286 100644 --- a/website/docs/r/dashboard.html.markdown +++ b/website/docs/r/dashboard.html.markdown @@ -263,7 +263,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Dashboard. * `update` - (Defaults to 30 minutes) Used when updating the Dashboard. diff --git a/website/docs/r/data_factory.html.markdown b/website/docs/r/data_factory.html.markdown index 405f4c502e6d..7e1f6642aada 100644 --- a/website/docs/r/data_factory.html.markdown +++ b/website/docs/r/data_factory.html.markdown @@ -126,7 +126,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory. diff --git a/website/docs/r/data_factory_custom_dataset.html.markdown b/website/docs/r/data_factory_custom_dataset.html.markdown index 082ff514334c..beb0cb72bd7e 100644 --- a/website/docs/r/data_factory_custom_dataset.html.markdown +++ b/website/docs/r/data_factory_custom_dataset.html.markdown @@ -155,7 +155,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Dataset. diff --git a/website/docs/r/data_factory_data_flow.html.markdown b/website/docs/r/data_factory_data_flow.html.markdown index f3d2b18a2db9..06f4f1bc57c5 100644 --- a/website/docs/r/data_factory_data_flow.html.markdown +++ b/website/docs/r/data_factory_data_flow.html.markdown @@ -203,7 +203,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Data Flow. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Data Flow. diff --git a/website/docs/r/data_factory_dataset_azure_blob.html.markdown b/website/docs/r/data_factory_dataset_azure_blob.html.markdown index 7d5b65a7cc3f..e735521375e7 100644 --- a/website/docs/r/data_factory_dataset_azure_blob.html.markdown +++ b/website/docs/r/data_factory_dataset_azure_blob.html.markdown @@ -96,7 +96,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Dataset. diff --git a/website/docs/r/data_factory_dataset_binary.html.markdown b/website/docs/r/data_factory_dataset_binary.html.markdown index d1e60718c052..6ee9632db692 100644 --- a/website/docs/r/data_factory_dataset_binary.html.markdown +++ b/website/docs/r/data_factory_dataset_binary.html.markdown @@ -137,7 +137,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Factory Dataset. diff --git a/website/docs/r/data_factory_dataset_cosmosdb_sqlapi.html.markdown b/website/docs/r/data_factory_dataset_cosmosdb_sqlapi.html.markdown index 443adfe42c62..fa6e0f10f826 100644 --- a/website/docs/r/data_factory_dataset_cosmosdb_sqlapi.html.markdown +++ b/website/docs/r/data_factory_dataset_cosmosdb_sqlapi.html.markdown @@ -90,7 +90,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Dataset. diff --git a/website/docs/r/data_factory_dataset_delimited_text.html.markdown b/website/docs/r/data_factory_dataset_delimited_text.html.markdown index e0818898cd8c..adc60a97f8ff 100644 --- a/website/docs/r/data_factory_dataset_delimited_text.html.markdown +++ b/website/docs/r/data_factory_dataset_delimited_text.html.markdown @@ -160,7 +160,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Dataset. diff --git a/website/docs/r/data_factory_dataset_http.html.markdown b/website/docs/r/data_factory_dataset_http.html.markdown index dc4939affe23..61d04907c606 100644 --- a/website/docs/r/data_factory_dataset_http.html.markdown +++ b/website/docs/r/data_factory_dataset_http.html.markdown @@ -92,7 +92,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Dataset. diff --git a/website/docs/r/data_factory_dataset_json.html.markdown b/website/docs/r/data_factory_dataset_json.html.markdown index 51c7fb65304d..5593498b5579 100644 --- a/website/docs/r/data_factory_dataset_json.html.markdown +++ b/website/docs/r/data_factory_dataset_json.html.markdown @@ -127,7 +127,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Dataset. diff --git a/website/docs/r/data_factory_dataset_mysql.html.markdown b/website/docs/r/data_factory_dataset_mysql.html.markdown index e3c9d91c3529..9e7a7c1fa14c 100644 --- a/website/docs/r/data_factory_dataset_mysql.html.markdown +++ b/website/docs/r/data_factory_dataset_mysql.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory MySQL Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory MySQL Dataset. diff --git a/website/docs/r/data_factory_dataset_parquet.html.markdown b/website/docs/r/data_factory_dataset_parquet.html.markdown index 61b9efade07e..51c1bd16cdc3 100644 --- a/website/docs/r/data_factory_dataset_parquet.html.markdown +++ b/website/docs/r/data_factory_dataset_parquet.html.markdown @@ -124,7 +124,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Dataset. diff --git a/website/docs/r/data_factory_dataset_postgresql.html.markdown b/website/docs/r/data_factory_dataset_postgresql.html.markdown index 4ddad67f5ed6..9128a825e045 100644 --- a/website/docs/r/data_factory_dataset_postgresql.html.markdown +++ b/website/docs/r/data_factory_dataset_postgresql.html.markdown @@ -79,7 +79,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory PostgreSQL Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory PostgreSQL Dataset. diff --git a/website/docs/r/data_factory_dataset_snowflake.html.markdown b/website/docs/r/data_factory_dataset_snowflake.html.markdown index 08f0814a7075..7019d5a8a43f 100644 --- a/website/docs/r/data_factory_dataset_snowflake.html.markdown +++ b/website/docs/r/data_factory_dataset_snowflake.html.markdown @@ -86,7 +86,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Snowflake Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Snowflake Dataset. diff --git a/website/docs/r/data_factory_dataset_sql_server_table.html.markdown b/website/docs/r/data_factory_dataset_sql_server_table.html.markdown index 6a4ee4c4c8e4..6ff73a5c5cb3 100644 --- a/website/docs/r/data_factory_dataset_sql_server_table.html.markdown +++ b/website/docs/r/data_factory_dataset_sql_server_table.html.markdown @@ -80,7 +80,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory SQL Server Table Dataset. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory SQL Server Table Dataset. diff --git a/website/docs/r/data_factory_integration_runtime_azure_ssis.html.markdown b/website/docs/r/data_factory_integration_runtime_azure_ssis.html.markdown index 031ab42611ed..9f1a114fbb6a 100644 --- a/website/docs/r/data_factory_integration_runtime_azure_ssis.html.markdown +++ b/website/docs/r/data_factory_integration_runtime_azure_ssis.html.markdown @@ -177,7 +177,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Azure-SSIS Integration Runtime. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Azure-SSIS Integration Runtime. diff --git a/website/docs/r/data_factory_integration_runtime_managed.html.markdown b/website/docs/r/data_factory_integration_runtime_managed.html.markdown index 5c7e7d7a8fbb..ea58b3faf0ba 100644 --- a/website/docs/r/data_factory_integration_runtime_managed.html.markdown +++ b/website/docs/r/data_factory_integration_runtime_managed.html.markdown @@ -99,7 +99,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Integration Managed Runtime. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Integration Managed Runtime. diff --git a/website/docs/r/data_factory_integration_runtime_self_hosted.html.markdown b/website/docs/r/data_factory_integration_runtime_self_hosted.html.markdown index 99763a4a3120..8de82b3db309 100644 --- a/website/docs/r/data_factory_integration_runtime_self_hosted.html.markdown +++ b/website/docs/r/data_factory_integration_runtime_self_hosted.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Factory. diff --git a/website/docs/r/data_factory_linked_custom_service.html.markdown b/website/docs/r/data_factory_linked_custom_service.html.markdown index cde2d5414e58..f615bcd1c2e1 100644 --- a/website/docs/r/data_factory_linked_custom_service.html.markdown +++ b/website/docs/r/data_factory_linked_custom_service.html.markdown @@ -96,7 +96,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_azure_blob_storage.html.markdown b/website/docs/r/data_factory_linked_service_azure_blob_storage.html.markdown index 119a8ec4b1df..27fb72b9a8ae 100644 --- a/website/docs/r/data_factory_linked_service_azure_blob_storage.html.markdown +++ b/website/docs/r/data_factory_linked_service_azure_blob_storage.html.markdown @@ -162,7 +162,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_azure_databricks.html.markdown b/website/docs/r/data_factory_linked_service_azure_databricks.html.markdown index 502529ffae14..940e1c95b1fe 100644 --- a/website/docs/r/data_factory_linked_service_azure_databricks.html.markdown +++ b/website/docs/r/data_factory_linked_service_azure_databricks.html.markdown @@ -199,7 +199,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_azure_file_storage.html.markdown b/website/docs/r/data_factory_linked_service_azure_file_storage.html.markdown index 8e92ae1b7acb..6fe2a06c279e 100644 --- a/website/docs/r/data_factory_linked_service_azure_file_storage.html.markdown +++ b/website/docs/r/data_factory_linked_service_azure_file_storage.html.markdown @@ -83,7 +83,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_azure_function.html.markdown b/website/docs/r/data_factory_linked_service_azure_function.html.markdown index 85533696747d..f5699b418821 100644 --- a/website/docs/r/data_factory_linked_service_azure_function.html.markdown +++ b/website/docs/r/data_factory_linked_service_azure_function.html.markdown @@ -85,7 +85,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_azure_search.html.markdown b/website/docs/r/data_factory_linked_service_azure_search.html.markdown index 28a5f20d7a4d..653bb378e176 100644 --- a/website/docs/r/data_factory_linked_service_azure_search.html.markdown +++ b/website/docs/r/data_factory_linked_service_azure_search.html.markdown @@ -74,7 +74,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_azure_sql_database.html.markdown b/website/docs/r/data_factory_linked_service_azure_sql_database.html.markdown index fe20aea04c85..e97aba49cb7f 100644 --- a/website/docs/r/data_factory_linked_service_azure_sql_database.html.markdown +++ b/website/docs/r/data_factory_linked_service_azure_sql_database.html.markdown @@ -92,7 +92,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Azure SQL Database Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Azure SQL Database Linked Service. diff --git a/website/docs/r/data_factory_linked_service_azure_table_storage.html.markdown b/website/docs/r/data_factory_linked_service_azure_table_storage.html.markdown index 6b31feaff328..ce0c02e8409e 100644 --- a/website/docs/r/data_factory_linked_service_azure_table_storage.html.markdown +++ b/website/docs/r/data_factory_linked_service_azure_table_storage.html.markdown @@ -69,7 +69,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_cosmosdb.html.markdown b/website/docs/r/data_factory_linked_service_cosmosdb.html.markdown index 7f3c311c3eaf..7ba5567a49ef 100644 --- a/website/docs/r/data_factory_linked_service_cosmosdb.html.markdown +++ b/website/docs/r/data_factory_linked_service_cosmosdb.html.markdown @@ -78,7 +78,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_cosmosdb_mongoapi.html.markdown b/website/docs/r/data_factory_linked_service_cosmosdb_mongoapi.html.markdown index 4104d7fac715..8e5e6f1d5bd7 100644 --- a/website/docs/r/data_factory_linked_service_cosmosdb_mongoapi.html.markdown +++ b/website/docs/r/data_factory_linked_service_cosmosdb_mongoapi.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_data_lake_storage_gen2.html.markdown b/website/docs/r/data_factory_linked_service_data_lake_storage_gen2.html.markdown index 7d05aa699582..131839f78db6 100644 --- a/website/docs/r/data_factory_linked_service_data_lake_storage_gen2.html.markdown +++ b/website/docs/r/data_factory_linked_service_data_lake_storage_gen2.html.markdown @@ -84,7 +84,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Data Lake Storage Gen2 Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Data Lake Storage Gen2 Linked Service. diff --git a/website/docs/r/data_factory_linked_service_key_vault.html.markdown b/website/docs/r/data_factory_linked_service_key_vault.html.markdown index 57baeca1f0e9..5cfee6b16d7a 100644 --- a/website/docs/r/data_factory_linked_service_key_vault.html.markdown +++ b/website/docs/r/data_factory_linked_service_key_vault.html.markdown @@ -71,7 +71,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Key Vault Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Key Vault Linked Service. diff --git a/website/docs/r/data_factory_linked_service_kusto.html.markdown b/website/docs/r/data_factory_linked_service_kusto.html.markdown index 3a4dada5eb5d..65e55900ce7b 100644 --- a/website/docs/r/data_factory_linked_service_kusto.html.markdown +++ b/website/docs/r/data_factory_linked_service_kusto.html.markdown @@ -112,7 +112,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_mysql.html.markdown b/website/docs/r/data_factory_linked_service_mysql.html.markdown index 615626fa6a07..f756eff7891b 100644 --- a/website/docs/r/data_factory_linked_service_mysql.html.markdown +++ b/website/docs/r/data_factory_linked_service_mysql.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory MySQL Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory MySQL Linked Service. diff --git a/website/docs/r/data_factory_linked_service_odata.html.markdown b/website/docs/r/data_factory_linked_service_odata.html.markdown index 4be0b52d5d5a..39b728c328ac 100644 --- a/website/docs/r/data_factory_linked_service_odata.html.markdown +++ b/website/docs/r/data_factory_linked_service_odata.html.markdown @@ -81,7 +81,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory OData Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory OData Linked Service. diff --git a/website/docs/r/data_factory_linked_service_odbc.html.markdown b/website/docs/r/data_factory_linked_service_odbc.html.markdown index 1ee2d0e9511b..87d3e9203042 100644 --- a/website/docs/r/data_factory_linked_service_odbc.html.markdown +++ b/website/docs/r/data_factory_linked_service_odbc.html.markdown @@ -81,7 +81,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory ODBC Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory ODBC Linked Service. diff --git a/website/docs/r/data_factory_linked_service_postgresql.html.markdown b/website/docs/r/data_factory_linked_service_postgresql.html.markdown index a5177e95933d..3bedf9b83948 100644 --- a/website/docs/r/data_factory_linked_service_postgresql.html.markdown +++ b/website/docs/r/data_factory_linked_service_postgresql.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory PostgreSQL Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory PostgreSQL Linked Service. diff --git a/website/docs/r/data_factory_linked_service_sftp.html.markdown b/website/docs/r/data_factory_linked_service_sftp.html.markdown index 353ba2481de8..53f270351a16 100644 --- a/website/docs/r/data_factory_linked_service_sftp.html.markdown +++ b/website/docs/r/data_factory_linked_service_sftp.html.markdown @@ -80,7 +80,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_linked_service_snowflake.html.markdown b/website/docs/r/data_factory_linked_service_snowflake.html.markdown index a1c15c41214d..ad9a7d247e13 100644 --- a/website/docs/r/data_factory_linked_service_snowflake.html.markdown +++ b/website/docs/r/data_factory_linked_service_snowflake.html.markdown @@ -116,7 +116,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Snowflake Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Snowflake Linked Service. diff --git a/website/docs/r/data_factory_linked_service_sql_server.html.markdown b/website/docs/r/data_factory_linked_service_sql_server.html.markdown index 77a7bea75a3d..012bfe121d45 100644 --- a/website/docs/r/data_factory_linked_service_sql_server.html.markdown +++ b/website/docs/r/data_factory_linked_service_sql_server.html.markdown @@ -128,7 +128,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory SQL Server Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory SQL Server Linked Service. diff --git a/website/docs/r/data_factory_linked_service_synapse.html.markdown b/website/docs/r/data_factory_linked_service_synapse.html.markdown index 8f2aaadb7b27..e50a5581b275 100644 --- a/website/docs/r/data_factory_linked_service_synapse.html.markdown +++ b/website/docs/r/data_factory_linked_service_synapse.html.markdown @@ -119,7 +119,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Synapse Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Synapse Linked Service. diff --git a/website/docs/r/data_factory_linked_service_web.html.markdown b/website/docs/r/data_factory_linked_service_web.html.markdown index f664b5c7ffa6..9bedb70cbaec 100644 --- a/website/docs/r/data_factory_linked_service_web.html.markdown +++ b/website/docs/r/data_factory_linked_service_web.html.markdown @@ -67,7 +67,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Linked Service. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Linked Service. diff --git a/website/docs/r/data_factory_managed_private_endpoint.html.markdown b/website/docs/r/data_factory_managed_private_endpoint.html.markdown index 83b93fc15c16..ff54587c20e5 100644 --- a/website/docs/r/data_factory_managed_private_endpoint.html.markdown +++ b/website/docs/r/data_factory_managed_private_endpoint.html.markdown @@ -66,7 +66,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Managed Private Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Factory Managed Private Endpoint. diff --git a/website/docs/r/data_factory_pipeline.html.markdown b/website/docs/r/data_factory_pipeline.html.markdown index 9bbe76159ab5..c399d8c7e1a8 100644 --- a/website/docs/r/data_factory_pipeline.html.markdown +++ b/website/docs/r/data_factory_pipeline.html.markdown @@ -88,7 +88,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Pipeline. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Pipeline. diff --git a/website/docs/r/data_factory_trigger_blob_event.html.markdown b/website/docs/r/data_factory_trigger_blob_event.html.markdown index 32eeab57cefe..f1d3e47306ac 100644 --- a/website/docs/r/data_factory_trigger_blob_event.html.markdown +++ b/website/docs/r/data_factory_trigger_blob_event.html.markdown @@ -109,7 +109,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Blob Event Trigger. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Blob Event Trigger. diff --git a/website/docs/r/data_factory_trigger_custom_event.html.markdown b/website/docs/r/data_factory_trigger_custom_event.html.markdown index 22e47ffbfa95..66b5c853f2b3 100644 --- a/website/docs/r/data_factory_trigger_custom_event.html.markdown +++ b/website/docs/r/data_factory_trigger_custom_event.html.markdown @@ -104,7 +104,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Custom Event Trigger. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Custom Event Trigger. diff --git a/website/docs/r/data_factory_trigger_schedule.html.markdown b/website/docs/r/data_factory_trigger_schedule.html.markdown index 6cbd9e0d6668..8f33900d24a8 100644 --- a/website/docs/r/data_factory_trigger_schedule.html.markdown +++ b/website/docs/r/data_factory_trigger_schedule.html.markdown @@ -109,7 +109,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Schedule Trigger. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Schedule Trigger. diff --git a/website/docs/r/data_factory_tumbling_window.html.markdown b/website/docs/r/data_factory_tumbling_window.html.markdown index cf46f2375694..1cb3e95969aa 100644 --- a/website/docs/r/data_factory_tumbling_window.html.markdown +++ b/website/docs/r/data_factory_tumbling_window.html.markdown @@ -134,7 +134,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Factory Tumbling Window Trigger. * `update` - (Defaults to 30 minutes) Used when updating the Data Factory Tumbling Window Trigger. diff --git a/website/docs/r/data_protection_backup_instance_blob_storage.html.markdown b/website/docs/r/data_protection_backup_instance_blob_storage.html.markdown index 8b5fd1cb8c2a..c6915ed4373b 100644 --- a/website/docs/r/data_protection_backup_instance_blob_storage.html.markdown +++ b/website/docs/r/data_protection_backup_instance_blob_storage.html.markdown @@ -84,7 +84,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Instance Blob Storage. * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Instance Blob Storage. diff --git a/website/docs/r/data_protection_backup_instance_disk.html.markdown b/website/docs/r/data_protection_backup_instance_disk.html.markdown index dab57cefbf21..56883aa57d8b 100644 --- a/website/docs/r/data_protection_backup_instance_disk.html.markdown +++ b/website/docs/r/data_protection_backup_instance_disk.html.markdown @@ -93,7 +93,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Instance Disk. * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Instance Disk. diff --git a/website/docs/r/data_protection_backup_instance_postgresql.html.markdown b/website/docs/r/data_protection_backup_instance_postgresql.html.markdown index 7205c225a70a..61e92324f624 100644 --- a/website/docs/r/data_protection_backup_instance_postgresql.html.markdown +++ b/website/docs/r/data_protection_backup_instance_postgresql.html.markdown @@ -161,7 +161,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Instance PostgreSQL. * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Instance PostgreSQL. diff --git a/website/docs/r/data_protection_backup_policy_blob_storage.html.markdown b/website/docs/r/data_protection_backup_policy_blob_storage.html.markdown index 207bbaf26f89..8d56a00b3e4f 100644 --- a/website/docs/r/data_protection_backup_policy_blob_storage.html.markdown +++ b/website/docs/r/data_protection_backup_policy_blob_storage.html.markdown @@ -51,7 +51,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Policy Blob Storage. * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Policy Blob Storage. diff --git a/website/docs/r/data_protection_backup_policy_disk.html.markdown b/website/docs/r/data_protection_backup_policy_disk.html.markdown index bb5cdfa73355..2a55da3c8c5d 100644 --- a/website/docs/r/data_protection_backup_policy_disk.html.markdown +++ b/website/docs/r/data_protection_backup_policy_disk.html.markdown @@ -96,7 +96,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Policy Disk. * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Policy Disk. diff --git a/website/docs/r/data_protection_backup_policy_postgresql.html.markdown b/website/docs/r/data_protection_backup_policy_postgresql.html.markdown index c4df40234c02..fe3d71b14cee 100644 --- a/website/docs/r/data_protection_backup_policy_postgresql.html.markdown +++ b/website/docs/r/data_protection_backup_policy_postgresql.html.markdown @@ -119,7 +119,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Policy PostgreSQL. * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Policy PostgreSQL. diff --git a/website/docs/r/data_protection_backup_vault.html.markdown b/website/docs/r/data_protection_backup_vault.html.markdown index e5145a163eb1..a0f27f3b559a 100644 --- a/website/docs/r/data_protection_backup_vault.html.markdown +++ b/website/docs/r/data_protection_backup_vault.html.markdown @@ -73,7 +73,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backup Vault. * `read` - (Defaults to 5 minutes) Used when retrieving the Backup Vault. diff --git a/website/docs/r/data_protection_resource_guard.html.markdown b/website/docs/r/data_protection_resource_guard.html.markdown index 6b47ea6b1c8d..fbb1f4bbe91b 100644 --- a/website/docs/r/data_protection_resource_guard.html.markdown +++ b/website/docs/r/data_protection_resource_guard.html.markdown @@ -47,7 +47,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Resource Guard. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Guard. diff --git a/website/docs/r/data_share.html.markdown b/website/docs/r/data_share.html.markdown index 5861b704e9ae..c47a3b57c9c2 100644 --- a/website/docs/r/data_share.html.markdown +++ b/website/docs/r/data_share.html.markdown @@ -85,7 +85,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Share. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share. diff --git a/website/docs/r/data_share_account.html.markdown b/website/docs/r/data_share_account.html.markdown index d3c4bbb48f22..69e52fd4506b 100644 --- a/website/docs/r/data_share_account.html.markdown +++ b/website/docs/r/data_share_account.html.markdown @@ -79,7 +79,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Share Account. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Account. diff --git a/website/docs/r/data_share_dataset_blob_storage.html.markdown b/website/docs/r/data_share_dataset_blob_storage.html.markdown index c9e94267aaf1..8fd9c13deecd 100644 --- a/website/docs/r/data_share_dataset_blob_storage.html.markdown +++ b/website/docs/r/data_share_dataset_blob_storage.html.markdown @@ -113,7 +113,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Share Blob Storage Dataset. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Blob Storage Dataset. diff --git a/website/docs/r/data_share_dataset_data_lake_gen2.html.markdown b/website/docs/r/data_share_dataset_data_lake_gen2.html.markdown index 1f34b68c4a20..545a55754e03 100644 --- a/website/docs/r/data_share_dataset_data_lake_gen2.html.markdown +++ b/website/docs/r/data_share_dataset_data_lake_gen2.html.markdown @@ -101,7 +101,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Share Data Lake Gen2 Dataset. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Data Lake Gen2 Dataset. diff --git a/website/docs/r/data_share_dataset_kusto_cluster.html.markdown b/website/docs/r/data_share_dataset_kusto_cluster.html.markdown index 45d51ce02dda..03d0bea5872c 100644 --- a/website/docs/r/data_share_dataset_kusto_cluster.html.markdown +++ b/website/docs/r/data_share_dataset_kusto_cluster.html.markdown @@ -88,7 +88,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Share Kusto Cluster Dataset. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Kusto Cluster Dataset. diff --git a/website/docs/r/data_share_dataset_kusto_database.html.markdown b/website/docs/r/data_share_dataset_kusto_database.html.markdown index 280c56ebf8e5..67c6aa58e46a 100644 --- a/website/docs/r/data_share_dataset_kusto_database.html.markdown +++ b/website/docs/r/data_share_dataset_kusto_database.html.markdown @@ -93,7 +93,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Share Kusto Database Dataset. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Share Kusto Database Dataset. diff --git a/website/docs/r/database_migration_project.html.markdown b/website/docs/r/database_migration_project.html.markdown index e71f9aff2001..3c1b56aec42b 100644 --- a/website/docs/r/database_migration_project.html.markdown +++ b/website/docs/r/database_migration_project.html.markdown @@ -78,7 +78,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API. * `update` - (Defaults to 30 minutes) Used when updating the API Management API. diff --git a/website/docs/r/database_migration_service.html.markdown b/website/docs/r/database_migration_service.html.markdown index 597ced6b07be..438c273894a6 100644 --- a/website/docs/r/database_migration_service.html.markdown +++ b/website/docs/r/database_migration_service.html.markdown @@ -71,7 +71,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the API Management API. * `update` - (Defaults to 30 minutes) Used when updating the API Management API. diff --git a/website/docs/r/databox_edge_device.html.markdown b/website/docs/r/databox_edge_device.html.markdown index 2185d5d3070d..f596f1f8e2ce 100644 --- a/website/docs/r/databox_edge_device.html.markdown +++ b/website/docs/r/databox_edge_device.html.markdown @@ -79,7 +79,7 @@ The `device_properties` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Databox Edge Device. * `read` - (Defaults to 5 minutes) Used when retrieving the Databox Edge Device. diff --git a/website/docs/r/databox_edge_order.html.markdown b/website/docs/r/databox_edge_order.html.markdown index c599b51bc83e..b0ad1d05b476 100644 --- a/website/docs/r/databox_edge_order.html.markdown +++ b/website/docs/r/databox_edge_order.html.markdown @@ -151,7 +151,7 @@ A `return_tracking` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating a Databox Edge Order. * `read` - (Defaults to 5 minutes) Used when retrieving a Databox Edge Order. diff --git a/website/docs/r/databricks_workspace.html.markdown b/website/docs/r/databricks_workspace.html.markdown index e9a6d3b577ab..70f7d064de24 100644 --- a/website/docs/r/databricks_workspace.html.markdown +++ b/website/docs/r/databricks_workspace.html.markdown @@ -136,7 +136,7 @@ A `storage_account_identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Databricks Workspace. * `update` - (Defaults to 30 minutes) Used when updating the Databricks Workspace. diff --git a/website/docs/r/databricks_workspace_customer_managed_key.html.markdown b/website/docs/r/databricks_workspace_customer_managed_key.html.markdown index 6bc99e9d6664..bea9239ca2fd 100644 --- a/website/docs/r/databricks_workspace_customer_managed_key.html.markdown +++ b/website/docs/r/databricks_workspace_customer_managed_key.html.markdown @@ -131,7 +131,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Customer Managed Key for this Databricks Workspace. * `update` - (Defaults to 30 minutes) Used when updating the Customer Managed Key for this Databricks Workspace. diff --git a/website/docs/r/datadog_monitors.html.markdown b/website/docs/r/datadog_monitors.html.markdown index fa709dbee1e1..395069f3c46f 100644 --- a/website/docs/r/datadog_monitors.html.markdown +++ b/website/docs/r/datadog_monitors.html.markdown @@ -126,7 +126,7 @@ resource "azurerm_role_assignment" "example" { ``` ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Datadog Monitor. * `read` - (Defaults to 5 minutes) Used when retrieving the Datadog Monitor. diff --git a/website/docs/r/dedicated_hardware_security_module.html.markdown b/website/docs/r/dedicated_hardware_security_module.html.markdown index 8e986273e622..c347980edd5f 100644 --- a/website/docs/r/dedicated_hardware_security_module.html.markdown +++ b/website/docs/r/dedicated_hardware_security_module.html.markdown @@ -142,7 +142,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Dedicated Hardware Security Module. * `read` - (Defaults to 5 minutes) Used when retrieving the Dedicated Hardware Security Module. diff --git a/website/docs/r/dedicated_host.html.markdown b/website/docs/r/dedicated_host.html.markdown index 932206c34dd4..5a35b510747c 100644 --- a/website/docs/r/dedicated_host.html.markdown +++ b/website/docs/r/dedicated_host.html.markdown @@ -64,7 +64,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Dedicated Host. * `update` - (Defaults to 30 minutes) Used when updating the Dedicated Host. diff --git a/website/docs/r/dedicated_host_group.html.markdown b/website/docs/r/dedicated_host_group.html.markdown index 6fc29a39b4fd..6b8f3f0d2c94 100644 --- a/website/docs/r/dedicated_host_group.html.markdown +++ b/website/docs/r/dedicated_host_group.html.markdown @@ -54,7 +54,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Dedicated Host Group. * `update` - (Defaults to 30 minutes) Used when updating the Dedicated Host Group. diff --git a/website/docs/r/dev_test_lab.html.markdown b/website/docs/r/dev_test_lab.html.markdown index b48ae5e32cb1..32bc3f365d37 100644 --- a/website/docs/r/dev_test_lab.html.markdown +++ b/website/docs/r/dev_test_lab.html.markdown @@ -65,7 +65,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DevTest Lab. * `update` - (Defaults to 30 minutes) Used when updating the DevTest Lab. diff --git a/website/docs/r/dev_test_linux_virtual_machine.html.markdown b/website/docs/r/dev_test_linux_virtual_machine.html.markdown index 50b892d82c80..3b08d046d67d 100644 --- a/website/docs/r/dev_test_linux_virtual_machine.html.markdown +++ b/website/docs/r/dev_test_linux_virtual_machine.html.markdown @@ -149,7 +149,7 @@ A `inbound_nat_rule` block exports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DevTest Linux Virtual Machine. * `update` - (Defaults to 30 minutes) Used when updating the DevTest Linux Virtual Machine. diff --git a/website/docs/r/dev_test_policy.html.markdown b/website/docs/r/dev_test_policy.html.markdown index 3d87ee57bf4a..59bd6b497158 100644 --- a/website/docs/r/dev_test_policy.html.markdown +++ b/website/docs/r/dev_test_policy.html.markdown @@ -77,7 +77,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DevTest Policy. * `update` - (Defaults to 30 minutes) Used when updating the DevTest Policy. diff --git a/website/docs/r/dev_test_schedule.html.markdown b/website/docs/r/dev_test_schedule.html.markdown index 44eced4cc064..af0b4ecaebdd 100644 --- a/website/docs/r/dev_test_schedule.html.markdown +++ b/website/docs/r/dev_test_schedule.html.markdown @@ -102,7 +102,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DevTest Schedule. * `update` - (Defaults to 30 minutes) Used when updating the DevTest Schedule. diff --git a/website/docs/r/dev_test_virtual_network.html.markdown b/website/docs/r/dev_test_virtual_network.html.markdown index 19f53def82fb..955172d653d2 100644 --- a/website/docs/r/dev_test_virtual_network.html.markdown +++ b/website/docs/r/dev_test_virtual_network.html.markdown @@ -84,7 +84,7 @@ A `subnet` block exports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DevTest Virtual Network. * `update` - (Defaults to 30 minutes) Used when updating the DevTest Virtual Network. diff --git a/website/docs/r/dev_test_windows_virtual_machine.html.markdown b/website/docs/r/dev_test_windows_virtual_machine.html.markdown index b7291cdf4633..e5bbe5c66dad 100644 --- a/website/docs/r/dev_test_windows_virtual_machine.html.markdown +++ b/website/docs/r/dev_test_windows_virtual_machine.html.markdown @@ -143,7 +143,7 @@ A `inbound_nat_rule` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DevTest Windows Virtual Machine. * `update` - (Defaults to 30 minutes) Used when updating the DevTest Windows Virtual Machine. diff --git a/website/docs/r/digital_twins_endpoint_eventgrid.html.markdown b/website/docs/r/digital_twins_endpoint_eventgrid.html.markdown index 582f92024ac0..5403c72b22d0 100644 --- a/website/docs/r/digital_twins_endpoint_eventgrid.html.markdown +++ b/website/docs/r/digital_twins_endpoint_eventgrid.html.markdown @@ -67,7 +67,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Digital Twins Eventgrid Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the Digital Twins Eventgrid Endpoint. diff --git a/website/docs/r/digital_twins_endpoint_eventhub.html.markdown b/website/docs/r/digital_twins_endpoint_eventhub.html.markdown index 85a8f955007a..bbb5771918a0 100644 --- a/website/docs/r/digital_twins_endpoint_eventhub.html.markdown +++ b/website/docs/r/digital_twins_endpoint_eventhub.html.markdown @@ -86,7 +86,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Digital Twins Eventhub Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the Digital Twins Eventhub Endpoint. diff --git a/website/docs/r/digital_twins_endpoint_servicebus.html.markdown b/website/docs/r/digital_twins_endpoint_servicebus.html.markdown index 041d88b3be6a..724c0a79f530 100644 --- a/website/docs/r/digital_twins_endpoint_servicebus.html.markdown +++ b/website/docs/r/digital_twins_endpoint_servicebus.html.markdown @@ -79,7 +79,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Digital Twins Servicebus Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the Digital Twins Servicebus Endpoint. diff --git a/website/docs/r/digital_twins_instance.html.markdown b/website/docs/r/digital_twins_instance.html.markdown index c7bcec310897..6b7f99050ca7 100644 --- a/website/docs/r/digital_twins_instance.html.markdown +++ b/website/docs/r/digital_twins_instance.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Digital Twins instance. * `read` - (Defaults to 5 minutes) Used when retrieving the Digital Twins instance. diff --git a/website/docs/r/disk_access.html.markdown b/website/docs/r/disk_access.html.markdown index c76464aed70a..1177682ba56f 100644 --- a/website/docs/r/disk_access.html.markdown +++ b/website/docs/r/disk_access.html.markdown @@ -42,7 +42,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Disk. * `read` - (Defaults to 5 minutes) Used when retrieving the Disk. diff --git a/website/docs/r/disk_encryption_set.html.markdown b/website/docs/r/disk_encryption_set.html.markdown index 0101a59d2e32..2067bc3ae308 100644 --- a/website/docs/r/disk_encryption_set.html.markdown +++ b/website/docs/r/disk_encryption_set.html.markdown @@ -157,7 +157,7 @@ An `identity` block exports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Disk Encryption Set. * `update` - (Defaults to 60 minutes) Used when updating the Disk Encryption Set. diff --git a/website/docs/r/disk_pool.html.markdown b/website/docs/r/disk_pool.html.markdown index 4e81ab21cb6f..665eeecca6d7 100644 --- a/website/docs/r/disk_pool.html.markdown +++ b/website/docs/r/disk_pool.html.markdown @@ -79,7 +79,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Disk Pool. * `read` - (Defaults to 5 minutes) Used when retrieving the Disk Pool. diff --git a/website/docs/r/disk_pool_iscsi_target.html.markdown b/website/docs/r/disk_pool_iscsi_target.html.markdown index f9a1c84461f6..d253c6b03e4e 100644 --- a/website/docs/r/disk_pool_iscsi_target.html.markdown +++ b/website/docs/r/disk_pool_iscsi_target.html.markdown @@ -116,7 +116,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the iSCSI Target. * `read` - (Defaults to 5 minutes) Used when retrieving the iSCSI Target. diff --git a/website/docs/r/disk_pool_iscsi_target_lun.html.markdown b/website/docs/r/disk_pool_iscsi_target_lun.html.markdown index 8d5120e94d1e..b927dd9a5f98 100644 --- a/website/docs/r/disk_pool_iscsi_target_lun.html.markdown +++ b/website/docs/r/disk_pool_iscsi_target_lun.html.markdown @@ -116,7 +116,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the iSCSI Target LUN. * `read` - (Defaults to 5 minutes) Used when retrieving the iSCSI Target LUN. diff --git a/website/docs/r/disk_pool_managed_disk_attachment.html.markdown b/website/docs/r/disk_pool_managed_disk_attachment.html.markdown index 9ff1a50ed1dd..17b6422e2725 100644 --- a/website/docs/r/disk_pool_managed_disk_attachment.html.markdown +++ b/website/docs/r/disk_pool_managed_disk_attachment.html.markdown @@ -106,7 +106,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Disks Pool Managed Disk Attachment. * `read` - (Defaults to 5 minutes) Used when retrieving the Disks Pool Managed Disk Attachment. diff --git a/website/docs/r/disk_sas_token.html.markdown b/website/docs/r/disk_sas_token.html.markdown index 07a016e5ef02..049db4519ecd 100644 --- a/website/docs/r/disk_sas_token.html.markdown +++ b/website/docs/r/disk_sas_token.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Disk. * `read` - (Defaults to 5 minutes) Used when retrieving the Disk. diff --git a/website/docs/r/dns_a_record.html.markdown b/website/docs/r/dns_a_record.html.markdown index 0c8424d714de..b608f4556694 100644 --- a/website/docs/r/dns_a_record.html.markdown +++ b/website/docs/r/dns_a_record.html.markdown @@ -97,7 +97,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS A Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS A Record. diff --git a/website/docs/r/dns_aaaa_record.html.markdown b/website/docs/r/dns_aaaa_record.html.markdown index 33d142312cde..95e0752113c0 100644 --- a/website/docs/r/dns_aaaa_record.html.markdown +++ b/website/docs/r/dns_aaaa_record.html.markdown @@ -95,7 +95,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS AAAA Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS AAAA Record. diff --git a/website/docs/r/dns_caa_record.html.markdown b/website/docs/r/dns_caa_record.html.markdown index 6c5ce7001e03..7174a6187b55 100644 --- a/website/docs/r/dns_caa_record.html.markdown +++ b/website/docs/r/dns_caa_record.html.markdown @@ -95,7 +95,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS CAA Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS CAA Record. diff --git a/website/docs/r/dns_cname_record.html.markdown b/website/docs/r/dns_cname_record.html.markdown index 843d810d48dd..02b173f12721 100644 --- a/website/docs/r/dns_cname_record.html.markdown +++ b/website/docs/r/dns_cname_record.html.markdown @@ -97,7 +97,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS CName Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS CName Record. diff --git a/website/docs/r/dns_mx_record.html.markdown b/website/docs/r/dns_mx_record.html.markdown index b10d64ea7659..9de7ecbcdfae 100644 --- a/website/docs/r/dns_mx_record.html.markdown +++ b/website/docs/r/dns_mx_record.html.markdown @@ -79,7 +79,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS MX Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS MX Record. diff --git a/website/docs/r/dns_ns_record.html.markdown b/website/docs/r/dns_ns_record.html.markdown index 94f959e04bb7..436f87b3a8ba 100644 --- a/website/docs/r/dns_ns_record.html.markdown +++ b/website/docs/r/dns_ns_record.html.markdown @@ -65,7 +65,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS NS Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS NS Record. diff --git a/website/docs/r/dns_ptr_record.html.markdown b/website/docs/r/dns_ptr_record.html.markdown index de01ada5695a..592be2072acd 100644 --- a/website/docs/r/dns_ptr_record.html.markdown +++ b/website/docs/r/dns_ptr_record.html.markdown @@ -61,7 +61,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS PTR Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS PTR Record. diff --git a/website/docs/r/dns_srv_record.html.markdown b/website/docs/r/dns_srv_record.html.markdown index d8f86205c52f..d37e26ba5b45 100644 --- a/website/docs/r/dns_srv_record.html.markdown +++ b/website/docs/r/dns_srv_record.html.markdown @@ -81,7 +81,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS SRV Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS SRV Record. diff --git a/website/docs/r/dns_txt_record.html.markdown b/website/docs/r/dns_txt_record.html.markdown index 365906c2726e..45bf512fe160 100644 --- a/website/docs/r/dns_txt_record.html.markdown +++ b/website/docs/r/dns_txt_record.html.markdown @@ -75,7 +75,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS TXT Record. * `update` - (Defaults to 30 minutes) Used when updating the DNS TXT Record. diff --git a/website/docs/r/dns_zone.html.markdown b/website/docs/r/dns_zone.html.markdown index 6f59bfff8694..b3f775c177e7 100644 --- a/website/docs/r/dns_zone.html.markdown +++ b/website/docs/r/dns_zone.html.markdown @@ -70,7 +70,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DNS Zone. * `update` - (Defaults to 30 minutes) Used when updating the DNS Zone. diff --git a/website/docs/r/elastic_cloud_elasticsearch.html.markdown b/website/docs/r/elastic_cloud_elasticsearch.html.markdown index 573601bd514d..f80e396efdff 100644 --- a/website/docs/r/elastic_cloud_elasticsearch.html.markdown +++ b/website/docs/r/elastic_cloud_elasticsearch.html.markdown @@ -91,7 +91,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Elasticsearch. * `read` - (Defaults to 5 minutes) Used when retrieving the Elasticsearch. diff --git a/website/docs/r/eventgrid_domain.html.markdown b/website/docs/r/eventgrid_domain.html.markdown index 714e3781846b..49630a0ed327 100644 --- a/website/docs/r/eventgrid_domain.html.markdown +++ b/website/docs/r/eventgrid_domain.html.markdown @@ -132,7 +132,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventGrid Domain. * `update` - (Defaults to 30 minutes) Used when updating the EventGrid Domain. diff --git a/website/docs/r/eventgrid_domain_topic.html.markdown b/website/docs/r/eventgrid_domain_topic.html.markdown index e727da63303e..7d6aa639fb06 100644 --- a/website/docs/r/eventgrid_domain_topic.html.markdown +++ b/website/docs/r/eventgrid_domain_topic.html.markdown @@ -50,7 +50,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventGrid Domain Topic. * `update` - (Defaults to 30 minutes) Used when updating the EventGrid Domain Topic. diff --git a/website/docs/r/eventgrid_event_subscription.html.markdown b/website/docs/r/eventgrid_event_subscription.html.markdown index 57897633c287..c76b1ac71731 100644 --- a/website/docs/r/eventgrid_event_subscription.html.markdown +++ b/website/docs/r/eventgrid_event_subscription.html.markdown @@ -235,7 +235,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventGrid Event Subscription. * `update` - (Defaults to 30 minutes) Used when updating the EventGrid Event Subscription. diff --git a/website/docs/r/eventgrid_system_topic.html.markdown b/website/docs/r/eventgrid_system_topic.html.markdown index 6c9cd78ad405..604f4555a89e 100644 --- a/website/docs/r/eventgrid_system_topic.html.markdown +++ b/website/docs/r/eventgrid_system_topic.html.markdown @@ -98,7 +98,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Event Grid System Topic. * `read` - (Defaults to 5 minutes) Used when retrieving the Event Grid System Topic. diff --git a/website/docs/r/eventgrid_system_topic_event_subscription.html.markdown b/website/docs/r/eventgrid_system_topic_event_subscription.html.markdown index 9b906f43ed7b..12f5e745a114 100644 --- a/website/docs/r/eventgrid_system_topic_event_subscription.html.markdown +++ b/website/docs/r/eventgrid_system_topic_event_subscription.html.markdown @@ -245,7 +245,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Messaging. * `read` - (Defaults to 5 minutes) Used when retrieving the Messaging. diff --git a/website/docs/r/eventgrid_topic.html.markdown b/website/docs/r/eventgrid_topic.html.markdown index f641e297925d..493553aeaddb 100644 --- a/website/docs/r/eventgrid_topic.html.markdown +++ b/website/docs/r/eventgrid_topic.html.markdown @@ -131,7 +131,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventGrid Topic. * `update` - (Defaults to 30 minutes) Used when updating the EventGrid Topic. diff --git a/website/docs/r/eventhub.html.markdown b/website/docs/r/eventhub.html.markdown index 8e26bf44a9dc..f5df6ac480b6 100644 --- a/website/docs/r/eventhub.html.markdown +++ b/website/docs/r/eventhub.html.markdown @@ -104,7 +104,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub. * `update` - (Defaults to 30 minutes) Used when updating the EventHub. diff --git a/website/docs/r/eventhub_authorization_rule.html.markdown b/website/docs/r/eventhub_authorization_rule.html.markdown index 08815a0994a9..824797eaa05b 100644 --- a/website/docs/r/eventhub_authorization_rule.html.markdown +++ b/website/docs/r/eventhub_authorization_rule.html.markdown @@ -91,7 +91,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub Authorization Rule. * `update` - (Defaults to 30 minutes) Used when updating the EventHub Authorization Rule. diff --git a/website/docs/r/eventhub_cluster.html.markdown b/website/docs/r/eventhub_cluster.html.markdown index 328768a053be..bbfadc5151c4 100644 --- a/website/docs/r/eventhub_cluster.html.markdown +++ b/website/docs/r/eventhub_cluster.html.markdown @@ -51,7 +51,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub Cluster. * `update` - (Defaults to 30 minutes) Used when updating the EventHub Cluster. diff --git a/website/docs/r/eventhub_consumer_group.html.markdown b/website/docs/r/eventhub_consumer_group.html.markdown index 5c5ab0ac97e2..be020714fd7e 100644 --- a/website/docs/r/eventhub_consumer_group.html.markdown +++ b/website/docs/r/eventhub_consumer_group.html.markdown @@ -71,7 +71,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub Consumer Group. * `update` - (Defaults to 30 minutes) Used when updating the EventHub Consumer Group. diff --git a/website/docs/r/eventhub_namespace.html.markdown b/website/docs/r/eventhub_namespace.html.markdown index 99fe6a28d7af..b4fde1cb63aa 100644 --- a/website/docs/r/eventhub_namespace.html.markdown +++ b/website/docs/r/eventhub_namespace.html.markdown @@ -134,7 +134,7 @@ An `identity` block exports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub Namespace. * `update` - (Defaults to 30 minutes) Used when updating the EventHub Namespace. diff --git a/website/docs/r/eventhub_namespace_authorization_rule.html.markdown b/website/docs/r/eventhub_namespace_authorization_rule.html.markdown index 3cfba2418577..c292843bf91a 100644 --- a/website/docs/r/eventhub_namespace_authorization_rule.html.markdown +++ b/website/docs/r/eventhub_namespace_authorization_rule.html.markdown @@ -81,7 +81,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub Namespace Authorization Rule. * `update` - (Defaults to 30 minutes) Used when updating the EventHub Namespace Authorization Rule. diff --git a/website/docs/r/eventhub_namespace_customer_managed_key.html.markdown b/website/docs/r/eventhub_namespace_customer_managed_key.html.markdown index e1e9d149bc6a..611874613759 100644 --- a/website/docs/r/eventhub_namespace_customer_managed_key.html.markdown +++ b/website/docs/r/eventhub_namespace_customer_managed_key.html.markdown @@ -108,7 +108,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub Namespace Customer Managed Key. * `read` - (Defaults to 5 minutes) Used when retrieving the EventHub Namespace Customer Managed Key. diff --git a/website/docs/r/eventhub_namespace_disaster_recovery_config.html.markdown b/website/docs/r/eventhub_namespace_disaster_recovery_config.html.markdown index 57193053b3a1..673434478e83 100644 --- a/website/docs/r/eventhub_namespace_disaster_recovery_config.html.markdown +++ b/website/docs/r/eventhub_namespace_disaster_recovery_config.html.markdown @@ -64,7 +64,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the EventHub Namespace Disaster Recovery Config. * `update` - (Defaults to 30 minutes) Used when updating the EventHub Namespace Disaster Recovery Config. diff --git a/website/docs/r/express_route_circuit.html.markdown b/website/docs/r/express_route_circuit.html.markdown index 2c51e594b41b..3f59517ed66f 100644 --- a/website/docs/r/express_route_circuit.html.markdown +++ b/website/docs/r/express_route_circuit.html.markdown @@ -89,7 +89,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ExpressRoute Circuit. * `update` - (Defaults to 30 minutes) Used when updating the ExpressRoute Circuit. diff --git a/website/docs/r/express_route_circuit_authorization.html.markdown b/website/docs/r/express_route_circuit_authorization.html.markdown index 36bed63337a3..e2808d960aee 100644 --- a/website/docs/r/express_route_circuit_authorization.html.markdown +++ b/website/docs/r/express_route_circuit_authorization.html.markdown @@ -72,7 +72,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ExpressRoute Circuit Authorization. * `update` - (Defaults to 30 minutes) Used when updating the ExpressRoute Circuit Authorization. diff --git a/website/docs/r/express_route_circuit_connection.html.markdown b/website/docs/r/express_route_circuit_connection.html.markdown index b5a2f712822f..beff6e505cd7 100644 --- a/website/docs/r/express_route_circuit_connection.html.markdown +++ b/website/docs/r/express_route_circuit_connection.html.markdown @@ -121,7 +121,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Express Route Circuit Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the Express Route Circuit Connection. diff --git a/website/docs/r/express_route_circuit_peering.html.markdown b/website/docs/r/express_route_circuit_peering.html.markdown index 6247f338cc4b..5b33d5d6ac2b 100644 --- a/website/docs/r/express_route_circuit_peering.html.markdown +++ b/website/docs/r/express_route_circuit_peering.html.markdown @@ -140,7 +140,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ExpressRoute Circuit Peering. diff --git a/website/docs/r/express_route_connection.html.markdown b/website/docs/r/express_route_connection.html.markdown index 7645905ba207..e825b48fcfc6 100644 --- a/website/docs/r/express_route_connection.html.markdown +++ b/website/docs/r/express_route_connection.html.markdown @@ -124,7 +124,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Express Route Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the Express Route Connection. diff --git a/website/docs/r/express_route_gateway.html.markdown b/website/docs/r/express_route_gateway.html.markdown index a91581bbd32d..a00003ba3894 100644 --- a/website/docs/r/express_route_gateway.html.markdown +++ b/website/docs/r/express_route_gateway.html.markdown @@ -69,7 +69,7 @@ The following attributes are exported: ### Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the ExpressRoute Gateway. diff --git a/website/docs/r/express_route_port.html.markdown b/website/docs/r/express_route_port.html.markdown index 2a1bd4b7ee11..50c671036ee8 100644 --- a/website/docs/r/express_route_port.html.markdown +++ b/website/docs/r/express_route_port.html.markdown @@ -110,7 +110,7 @@ A `link` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Express Route Port. * `read` - (Defaults to 5 minutes) Used when retrieving the Express Route Port. diff --git a/website/docs/r/firewall.html.markdown b/website/docs/r/firewall.html.markdown index db006c50d7d8..ae16b77bab5b 100644 --- a/website/docs/r/firewall.html.markdown +++ b/website/docs/r/firewall.html.markdown @@ -156,7 +156,7 @@ A `virtual_hub` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the Firewall. * `update` - (Defaults to 90 minutes) Used when updating the Firewall. diff --git a/website/docs/r/firewall_application_rule_collection.html.markdown b/website/docs/r/firewall_application_rule_collection.html.markdown index 380322a6c87b..6ca8d512057a 100644 --- a/website/docs/r/firewall_application_rule_collection.html.markdown +++ b/website/docs/r/firewall_application_rule_collection.html.markdown @@ -129,7 +129,7 @@ A `protocol` block supports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Firewall Application Rule Collection. * `update` - (Defaults to 30 minutes) Used when updating the Firewall Application Rule Collection. diff --git a/website/docs/r/firewall_nat_rule_collection.html.markdown b/website/docs/r/firewall_nat_rule_collection.html.markdown index 793944cd9735..a8f1587a180f 100644 --- a/website/docs/r/firewall_nat_rule_collection.html.markdown +++ b/website/docs/r/firewall_nat_rule_collection.html.markdown @@ -133,7 +133,7 @@ A `rule` block supports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Firewall NAT Rule Collection. * `update` - (Defaults to 30 minutes) Used when updating the Firewall NAT Rule Collection. diff --git a/website/docs/r/firewall_network_rule_collection.html.markdown b/website/docs/r/firewall_network_rule_collection.html.markdown index 36331a520a1f..50331c4ca05b 100644 --- a/website/docs/r/firewall_network_rule_collection.html.markdown +++ b/website/docs/r/firewall_network_rule_collection.html.markdown @@ -134,7 +134,7 @@ A `rule` block supports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Firewall Network Rule Collection. * `update` - (Defaults to 30 minutes) Used when updating the Firewall Network Rule Collection. diff --git a/website/docs/r/firewall_policy.html.markdown b/website/docs/r/firewall_policy.html.markdown index ff6b756ac0ac..3b7f9c7de3fb 100644 --- a/website/docs/r/firewall_policy.html.markdown +++ b/website/docs/r/firewall_policy.html.markdown @@ -163,7 +163,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Firewall Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the Firewall Policy. diff --git a/website/docs/r/firewall_policy_rule_collection_group.html.markdown b/website/docs/r/firewall_policy_rule_collection_group.html.markdown index 17505ffab2f7..502d456c28e8 100644 --- a/website/docs/r/firewall_policy_rule_collection_group.html.markdown +++ b/website/docs/r/firewall_policy_rule_collection_group.html.markdown @@ -218,7 +218,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Firewall Policy Rule Collection Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Firewall Policy Rule Collection Group. diff --git a/website/docs/r/fluid_relay_servers.html.markdown b/website/docs/r/fluid_relay_servers.html.markdown index ab147a9de8e5..c3d63c6f97d0 100644 --- a/website/docs/r/fluid_relay_servers.html.markdown +++ b/website/docs/r/fluid_relay_servers.html.markdown @@ -75,7 +75,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Fluid Relay Server. * `read` - (Defaults to 5 minutes) Used when retrieving the Fluid Relay Server. diff --git a/website/docs/r/frontdoor.html.markdown b/website/docs/r/frontdoor.html.markdown index 027217f5d33f..83cf9a31dc80 100644 --- a/website/docs/r/frontdoor.html.markdown +++ b/website/docs/r/frontdoor.html.markdown @@ -304,7 +304,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 6 hours) Used when creating the FrontDoor. * `update` - (Defaults to 6 hours) Used when updating the FrontDoor. diff --git a/website/docs/r/frontdoor_custom_https_configuration.html.markdown b/website/docs/r/frontdoor_custom_https_configuration.html.markdown index 4b5594b6cae5..f4cf0c4ee8cd 100644 --- a/website/docs/r/frontdoor_custom_https_configuration.html.markdown +++ b/website/docs/r/frontdoor_custom_https_configuration.html.markdown @@ -132,7 +132,7 @@ The `custom_https_configuration` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 6 hours) Used when creating a Custom HTTPS Configuration. * `update` - (Defaults to 6 hours) Used when updating a Custom HTTPS Configuration. diff --git a/website/docs/r/frontdoor_firewall_policy.html.markdown b/website/docs/r/frontdoor_firewall_policy.html.markdown index 869cadd39d14..815401c1f735 100644 --- a/website/docs/r/frontdoor_firewall_policy.html.markdown +++ b/website/docs/r/frontdoor_firewall_policy.html.markdown @@ -237,7 +237,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the FrontDoor Web Application Firewall Policy. * `update` - (Defaults to 30 minutes) Used when updating the FrontDoor Web Application Firewall Policy. diff --git a/website/docs/r/function_app.html.markdown b/website/docs/r/function_app.html.markdown index 16ba186d10a2..d6dbe36dfde8 100644 --- a/website/docs/r/function_app.html.markdown +++ b/website/docs/r/function_app.html.markdown @@ -514,7 +514,7 @@ The `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Function App. * `update` - (Defaults to 30 minutes) Used when updating the Function App. diff --git a/website/docs/r/function_app_active_slot.html.markdown b/website/docs/r/function_app_active_slot.html.markdown index 323393336d8b..5129468818fe 100644 --- a/website/docs/r/function_app_active_slot.html.markdown +++ b/website/docs/r/function_app_active_slot.html.markdown @@ -135,7 +135,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Function App Active Slot. * `update` - (Defaults to 30 minutes) Used when updating the Function App Active Slot. diff --git a/website/docs/r/function_app_function.html.markdown b/website/docs/r/function_app_function.html.markdown index 69cd3024ff76..65d8732c8d49 100644 --- a/website/docs/r/function_app_function.html.markdown +++ b/website/docs/r/function_app_function.html.markdown @@ -208,7 +208,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Function App Function. * `update` - (Defaults to 30 minutes) Used when updating the Function App Function. diff --git a/website/docs/r/function_app_hybrid_connection.html.markdown b/website/docs/r/function_app_hybrid_connection.html.markdown index fcdb86163a6e..00e8af701c75 100644 --- a/website/docs/r/function_app_hybrid_connection.html.markdown +++ b/website/docs/r/function_app_hybrid_connection.html.markdown @@ -115,7 +115,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Function App Hybrid Connection. * `update` - (Defaults to 30 minutes) Used when updating the Function App Hybrid Connection. diff --git a/website/docs/r/function_app_slot.html.markdown b/website/docs/r/function_app_slot.html.markdown index 25ec059784ae..2f12b6d84cca 100644 --- a/website/docs/r/function_app_slot.html.markdown +++ b/website/docs/r/function_app_slot.html.markdown @@ -320,7 +320,7 @@ The `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Function App Deployment Slot. * `update` - (Defaults to 30 minutes) Used when updating the Function App Deployment Slot. diff --git a/website/docs/r/gallery_application.html.markdown b/website/docs/r/gallery_application.html.markdown index 17452748dd32..4c79f57cf414 100644 --- a/website/docs/r/gallery_application.html.markdown +++ b/website/docs/r/gallery_application.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Gallery Application. * `read` - (Defaults to 5 minutes) Used when retrieving the Gallery Application. diff --git a/website/docs/r/gallery_application_version.html.markdown b/website/docs/r/gallery_application_version.html.markdown index cf9a4050d067..236030bcc680 100644 --- a/website/docs/r/gallery_application_version.html.markdown +++ b/website/docs/r/gallery_application_version.html.markdown @@ -136,7 +136,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Gallery Application Version. * `read` - (Defaults to 5 minutes) Used when retrieving the Gallery Application Version. diff --git a/website/docs/r/hdinsight_hadoop_cluster.html.markdown b/website/docs/r/hdinsight_hadoop_cluster.html.markdown index ee0a5bee332d..f7eb47b93a48 100644 --- a/website/docs/r/hdinsight_hadoop_cluster.html.markdown +++ b/website/docs/r/hdinsight_hadoop_cluster.html.markdown @@ -416,7 +416,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Hadoop HDInsight Cluster. * `update` - (Defaults to 60 minutes) Used when updating the Hadoop HDInsight Cluster. diff --git a/website/docs/r/hdinsight_hbase_cluster.html.markdown b/website/docs/r/hdinsight_hbase_cluster.html.markdown index 17486d47c384..916100d1d4eb 100644 --- a/website/docs/r/hdinsight_hbase_cluster.html.markdown +++ b/website/docs/r/hdinsight_hbase_cluster.html.markdown @@ -360,7 +360,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the HBase HDInsight Cluster. * `update` - (Defaults to 60 minutes) Used when updating the HBase HDInsight Cluster. diff --git a/website/docs/r/hdinsight_interactive_query_cluster.html.markdown b/website/docs/r/hdinsight_interactive_query_cluster.html.markdown index c226324c3ae9..c430446ab87d 100644 --- a/website/docs/r/hdinsight_interactive_query_cluster.html.markdown +++ b/website/docs/r/hdinsight_interactive_query_cluster.html.markdown @@ -375,7 +375,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Interactive Query HDInsight Cluster. * `update` - (Defaults to 60 minutes) Used when updating the Interactive Query HDInsight Cluster. diff --git a/website/docs/r/hdinsight_kafka_cluster.html.markdown b/website/docs/r/hdinsight_kafka_cluster.html.markdown index 803a11462b91..5d0df0a52190 100644 --- a/website/docs/r/hdinsight_kafka_cluster.html.markdown +++ b/website/docs/r/hdinsight_kafka_cluster.html.markdown @@ -371,7 +371,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kafka HDInsight Cluster. * `update` - (Defaults to 60 minutes) Used when updating the Kafka HDInsight Cluster. diff --git a/website/docs/r/hdinsight_spark_cluster.html.markdown b/website/docs/r/hdinsight_spark_cluster.html.markdown index 1cdac9c8aecc..468f9eb58549 100644 --- a/website/docs/r/hdinsight_spark_cluster.html.markdown +++ b/website/docs/r/hdinsight_spark_cluster.html.markdown @@ -372,7 +372,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Spark HDInsight Cluster. * `update` - (Defaults to 60 minutes) Used when updating the Spark HDInsight Cluster. diff --git a/website/docs/r/healthcare_dicom.html.markdown b/website/docs/r/healthcare_dicom.html.markdown index 58d7b288464b..869a424d6efc 100644 --- a/website/docs/r/healthcare_dicom.html.markdown +++ b/website/docs/r/healthcare_dicom.html.markdown @@ -75,7 +75,7 @@ An `authentication` supports the following: * `audience` - The intended audience to receive authentication tokens for the service. The default value is https://dicom.azurehealthcareapis.azure.com ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Healthcare DICOM Service. * `update` - (Defaults to 30 minutes) Used when updating the Healthcare DICOM Service. diff --git a/website/docs/r/healthcare_fhir_service.html.markdown b/website/docs/r/healthcare_fhir_service.html.markdown index 63c7b80df375..e60a41e5e1f2 100644 --- a/website/docs/r/healthcare_fhir_service.html.markdown +++ b/website/docs/r/healthcare_fhir_service.html.markdown @@ -115,7 +115,7 @@ The following attributes are exported: * `id` - The ID of the Healthcare FHIR Service. ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Healthcare FHIR Service. * `update` - (Defaults to 30 minutes) Used when updating the Healthcare FHIR Service. diff --git a/website/docs/r/healthcare_service.html.markdown b/website/docs/r/healthcare_service.html.markdown index 841fe2e64af1..63cc534843e6 100644 --- a/website/docs/r/healthcare_service.html.markdown +++ b/website/docs/r/healthcare_service.html.markdown @@ -95,7 +95,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Healthcare Service. * `update` - (Defaults to 30 minutes) Used when updating the Healthcare Service. diff --git a/website/docs/r/healthcare_workspace.html.markdown b/website/docs/r/healthcare_workspace.html.markdown index 02108b0cb507..0f8ed07573e8 100644 --- a/website/docs/r/healthcare_workspace.html.markdown +++ b/website/docs/r/healthcare_workspace.html.markdown @@ -37,7 +37,7 @@ The following attributes are exported: * `id` - The ID of the Healthcare Workspace. ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Healthcare Workspace. * `update` - (Defaults to 30 minutes) Used when updating the Healthcare Workspace. diff --git a/website/docs/r/hpc_cache.html.markdown b/website/docs/r/hpc_cache.html.markdown index f43746586e52..82264d06da6b 100644 --- a/website/docs/r/hpc_cache.html.markdown +++ b/website/docs/r/hpc_cache.html.markdown @@ -196,7 +196,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the HPC Cache. * `read` - (Defaults to 5 minutes) Used when retrieving the HPC Cache. diff --git a/website/docs/r/hpc_cache_access_policy.html.markdown b/website/docs/r/hpc_cache_access_policy.html.markdown index 125d78b36501..50c1bd3a5e98 100644 --- a/website/docs/r/hpc_cache_access_policy.html.markdown +++ b/website/docs/r/hpc_cache_access_policy.html.markdown @@ -92,7 +92,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the HPC Cache Access Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the HPC Cache Access Policy. diff --git a/website/docs/r/hpc_cache_blob_nfs_target.html.markdown b/website/docs/r/hpc_cache_blob_nfs_target.html.markdown index 6f3dd6158bd1..827226d45544 100644 --- a/website/docs/r/hpc_cache_blob_nfs_target.html.markdown +++ b/website/docs/r/hpc_cache_blob_nfs_target.html.markdown @@ -197,7 +197,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the HPC Cache Blob NFS Target. * `read` - (Defaults to 5 minutes) Used when retrieving the HPC Cache Blob NFS Target. diff --git a/website/docs/r/hpc_cache_blob_target.html.markdown b/website/docs/r/hpc_cache_blob_target.html.markdown index c95b771861e7..3feac1ff2ae3 100644 --- a/website/docs/r/hpc_cache_blob_target.html.markdown +++ b/website/docs/r/hpc_cache_blob_target.html.markdown @@ -107,7 +107,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the HPC Cache Blob Target. * `read` - (Defaults to 5 minutes) Used when retrieving the HPC Cache Blob Target. diff --git a/website/docs/r/hpc_cache_nfs_target.html.markdown b/website/docs/r/hpc_cache_nfs_target.html.markdown index ae4086507244..d576eccecd22 100644 --- a/website/docs/r/hpc_cache_nfs_target.html.markdown +++ b/website/docs/r/hpc_cache_nfs_target.html.markdown @@ -163,7 +163,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the HPC Cache NFS Target. * `read` - (Defaults to 5 minutes) Used when retrieving the HPC Cache NFS Target. diff --git a/website/docs/r/image.html.markdown b/website/docs/r/image.html.markdown index fdd44a7c1595..fe239af9c2c3 100644 --- a/website/docs/r/image.html.markdown +++ b/website/docs/r/image.html.markdown @@ -142,7 +142,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the Image. * `update` - (Defaults to 90 minutes) Used when updating the Image. diff --git a/website/docs/r/integration_service_environment.html.markdown b/website/docs/r/integration_service_environment.html.markdown index aebaa8f2a122..961e57914c76 100644 --- a/website/docs/r/integration_service_environment.html.markdown +++ b/website/docs/r/integration_service_environment.html.markdown @@ -117,7 +117,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 hours) Used when creating the Integration Service Environment. * `read` - (Defaults to 5 minutes) Used when retrieving the Integration Service Environment. diff --git a/website/docs/r/iot_security_device_group.html.markdown b/website/docs/r/iot_security_device_group.html.markdown index 101996aae020..8cb7b54c83f8 100644 --- a/website/docs/r/iot_security_device_group.html.markdown +++ b/website/docs/r/iot_security_device_group.html.markdown @@ -99,7 +99,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Iot Security Device Group. * `update` - (Defaults to 30 minutes) Used when updating the Iot Security Device Group. diff --git a/website/docs/r/iot_security_solution.html.markdown b/website/docs/r/iot_security_solution.html.markdown index 87a6b4c233b7..f3acd36f496b 100644 --- a/website/docs/r/iot_security_solution.html.markdown +++ b/website/docs/r/iot_security_solution.html.markdown @@ -124,7 +124,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Iot Security Solution. * `update` - (Defaults to 30 minutes) Used when updating the Iot Security Solution. diff --git a/website/docs/r/iot_time_series_insights_access_policy.html.markdown b/website/docs/r/iot_time_series_insights_access_policy.html.markdown index 33be0c142f67..5a09a2590c3e 100644 --- a/website/docs/r/iot_time_series_insights_access_policy.html.markdown +++ b/website/docs/r/iot_time_series_insights_access_policy.html.markdown @@ -57,7 +57,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IoT Time Series Insights Access Policy. * `update` - (Defaults to 30 minutes) Used when updating the IoT Time Series Insights Access Policy. diff --git a/website/docs/r/iot_time_series_insights_event_source_eventhub.html.markdown b/website/docs/r/iot_time_series_insights_event_source_eventhub.html.markdown index 287c4029ed2e..4d5c364367ac 100644 --- a/website/docs/r/iot_time_series_insights_event_source_eventhub.html.markdown +++ b/website/docs/r/iot_time_series_insights_event_source_eventhub.html.markdown @@ -120,7 +120,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IoT Time Series Insights EventHub Event Source. * `update` - (Defaults to 30 minutes) Used when updating the IoT Time Series Insights EventHub Event Source. diff --git a/website/docs/r/iot_time_series_insights_event_source_iothub.html.markdown b/website/docs/r/iot_time_series_insights_event_source_iothub.html.markdown index 3108a8766ee6..8e717bcdd3fd 100644 --- a/website/docs/r/iot_time_series_insights_event_source_iothub.html.markdown +++ b/website/docs/r/iot_time_series_insights_event_source_iothub.html.markdown @@ -102,7 +102,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IoT Time Series Insights IoTHub Event Source. * `update` - (Defaults to 30 minutes) Used when updating the IoT Time Series Insights IoTHub Event Source. diff --git a/website/docs/r/iot_time_series_insights_gen2_environment.html.markdown b/website/docs/r/iot_time_series_insights_gen2_environment.html.markdown index 6e083e425240..1c152c790e03 100644 --- a/website/docs/r/iot_time_series_insights_gen2_environment.html.markdown +++ b/website/docs/r/iot_time_series_insights_gen2_environment.html.markdown @@ -75,7 +75,7 @@ A `storage` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IoT Time Series Insights Gen2 Environment. * `update` - (Defaults to 30 minutes) Used when updating the IoT Time Series Insights Gen2 Environment. diff --git a/website/docs/r/iot_time_series_insights_reference_data_set.html.markdown b/website/docs/r/iot_time_series_insights_reference_data_set.html.markdown index 378f296e253e..f32d6aa67757 100644 --- a/website/docs/r/iot_time_series_insights_reference_data_set.html.markdown +++ b/website/docs/r/iot_time_series_insights_reference_data_set.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IoT Time Series Insights Reference Data Set. * `update` - (Defaults to 30 minutes) Used when updating the IoT Time Series Insights Reference Data Set. diff --git a/website/docs/r/iot_time_series_insights_standard_environment.html.markdown b/website/docs/r/iot_time_series_insights_standard_environment.html.markdown index a09e8e26d57c..e4ecc7b171b5 100644 --- a/website/docs/r/iot_time_series_insights_standard_environment.html.markdown +++ b/website/docs/r/iot_time_series_insights_standard_environment.html.markdown @@ -54,7 +54,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IoT Time Series Insights Standard Environment. * `update` - (Defaults to 30 minutes) Used when updating the IoT Time Series Insights Standard Environment. diff --git a/website/docs/r/iotcentral_application.html.markdown b/website/docs/r/iotcentral_application.html.markdown index 58710bfd5d1d..e33167050f77 100644 --- a/website/docs/r/iotcentral_application.html.markdown +++ b/website/docs/r/iotcentral_application.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IoT Central Application. * `update` - (Defaults to 30 minutes) Used when updating the IoT Central Application. diff --git a/website/docs/r/iothub.html.markdown b/website/docs/r/iothub.html.markdown index 4268e1549dfd..da35725b0157 100644 --- a/website/docs/r/iothub.html.markdown +++ b/website/docs/r/iothub.html.markdown @@ -366,7 +366,7 @@ A `shared access policy` block contains the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub. * `update` - (Defaults to 30 minutes) Used when updating the IotHub. diff --git a/website/docs/r/iothub_certificate.html.markdown b/website/docs/r/iothub_certificate.html.markdown index 36b4d82d4753..462b187e8b11 100644 --- a/website/docs/r/iothub_certificate.html.markdown +++ b/website/docs/r/iothub_certificate.html.markdown @@ -63,7 +63,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Certificate. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Certificate. diff --git a/website/docs/r/iothub_consumer_group.html.markdown b/website/docs/r/iothub_consumer_group.html.markdown index 9a65ffbc6579..3b834f61bd40 100644 --- a/website/docs/r/iothub_consumer_group.html.markdown +++ b/website/docs/r/iothub_consumer_group.html.markdown @@ -63,7 +63,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Consumer Group. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Consumer Group. diff --git a/website/docs/r/iothub_dps.html.markdown b/website/docs/r/iothub_dps.html.markdown index d84b9ec884cb..757de7295a5c 100644 --- a/website/docs/r/iothub_dps.html.markdown +++ b/website/docs/r/iothub_dps.html.markdown @@ -103,7 +103,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Device Provisioning Service. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Device Provisioning Service. diff --git a/website/docs/r/iothub_dps_certificate.html.markdown b/website/docs/r/iothub_dps_certificate.html.markdown index 5f2b48e8b106..04a5d2426c20 100644 --- a/website/docs/r/iothub_dps_certificate.html.markdown +++ b/website/docs/r/iothub_dps_certificate.html.markdown @@ -62,7 +62,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Device Provisioning Service Certificate. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Device Provisioning Service Certificate. diff --git a/website/docs/r/iothub_dps_shared_access_policy.html.markdown b/website/docs/r/iothub_dps_shared_access_policy.html.markdown index beb3cf2f3b63..7034f723f423 100644 --- a/website/docs/r/iothub_dps_shared_access_policy.html.markdown +++ b/website/docs/r/iothub_dps_shared_access_policy.html.markdown @@ -85,7 +85,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Device Provisioning Service Shared Access Policy. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Device Provisioning Service Shared Access Policy. diff --git a/website/docs/r/iothub_endpoint_eventhub.html.markdown b/website/docs/r/iothub_endpoint_eventhub.html.markdown index a0cb2aa24d91..40d528d3aed0 100644 --- a/website/docs/r/iothub_endpoint_eventhub.html.markdown +++ b/website/docs/r/iothub_endpoint_eventhub.html.markdown @@ -102,7 +102,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub EventHub Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the IotHub EventHub Endpoint. diff --git a/website/docs/r/iothub_endpoint_servicebus_queue.html.markdown b/website/docs/r/iothub_endpoint_servicebus_queue.html.markdown index 1b1dcb1e53aa..acb1cb4ceb9f 100644 --- a/website/docs/r/iothub_endpoint_servicebus_queue.html.markdown +++ b/website/docs/r/iothub_endpoint_servicebus_queue.html.markdown @@ -99,7 +99,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub ServiceBus Queue Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the IotHub ServiceBus Queue Endpoint. diff --git a/website/docs/r/iothub_endpoint_servicebus_topic.html.markdown b/website/docs/r/iothub_endpoint_servicebus_topic.html.markdown index e5b9940ee54b..15d0c2873ebd 100644 --- a/website/docs/r/iothub_endpoint_servicebus_topic.html.markdown +++ b/website/docs/r/iothub_endpoint_servicebus_topic.html.markdown @@ -97,7 +97,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub ServiceBus Topic Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the IotHub ServiceBus Topic Endpoint. diff --git a/website/docs/r/iothub_endpoint_storage_container.html.markdown b/website/docs/r/iothub_endpoint_storage_container.html.markdown index 2c130076b480..cf223a98b5bc 100644 --- a/website/docs/r/iothub_endpoint_storage_container.html.markdown +++ b/website/docs/r/iothub_endpoint_storage_container.html.markdown @@ -100,7 +100,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Storage Container Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Storage Container Endpoint. diff --git a/website/docs/r/iothub_enrichment.html.markdown b/website/docs/r/iothub_enrichment.html.markdown index c616498a6d24..55194c60e82a 100644 --- a/website/docs/r/iothub_enrichment.html.markdown +++ b/website/docs/r/iothub_enrichment.html.markdown @@ -101,7 +101,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Enrichment. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Enrichment. diff --git a/website/docs/r/iothub_fallback_route.html.markdown b/website/docs/r/iothub_fallback_route.html.markdown index 9400978a338b..d87ba604aacd 100644 --- a/website/docs/r/iothub_fallback_route.html.markdown +++ b/website/docs/r/iothub_fallback_route.html.markdown @@ -102,7 +102,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Fallback Route. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Fallback Route. diff --git a/website/docs/r/iothub_route.html.markdown b/website/docs/r/iothub_route.html.markdown index a58506c1c1f3..d21a96caa97b 100644 --- a/website/docs/r/iothub_route.html.markdown +++ b/website/docs/r/iothub_route.html.markdown @@ -102,7 +102,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Route. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Route. diff --git a/website/docs/r/iothub_shared_access_policy.html.markdown b/website/docs/r/iothub_shared_access_policy.html.markdown index a19164091bd5..3f95cc980dc3 100644 --- a/website/docs/r/iothub_shared_access_policy.html.markdown +++ b/website/docs/r/iothub_shared_access_policy.html.markdown @@ -79,7 +79,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IotHub Shared Access Policy. * `update` - (Defaults to 30 minutes) Used when updating the IotHub Shared Access Policy. diff --git a/website/docs/r/ip_group.html.markdown b/website/docs/r/ip_group.html.markdown index 29279494ad62..2fceac3b542c 100644 --- a/website/docs/r/ip_group.html.markdown +++ b/website/docs/r/ip_group.html.markdown @@ -55,7 +55,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the IP Group. * `update` - (Defaults to 30 minutes) Used when updating the IP Group. diff --git a/website/docs/r/key_vault.html.markdown b/website/docs/r/key_vault.html.markdown index 0ae7dd659808..551c7a66b12b 100644 --- a/website/docs/r/key_vault.html.markdown +++ b/website/docs/r/key_vault.html.markdown @@ -158,7 +158,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Key Vault. * `update` - (Defaults to 30 minutes) Used when updating the Key Vault. diff --git a/website/docs/r/key_vault_access_policy.html.markdown b/website/docs/r/key_vault_access_policy.html.markdown index afc5c4963749..2caeca4c7fac 100644 --- a/website/docs/r/key_vault_access_policy.html.markdown +++ b/website/docs/r/key_vault_access_policy.html.markdown @@ -83,7 +83,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Key Vault Access Policy. * `update` - (Defaults to 30 minutes) Used when updating the Key Vault Access Policy. diff --git a/website/docs/r/key_vault_certificate.html.markdown b/website/docs/r/key_vault_certificate.html.markdown index c87034b48109..ab38ef6d15da 100644 --- a/website/docs/r/key_vault_certificate.html.markdown +++ b/website/docs/r/key_vault_certificate.html.markdown @@ -323,7 +323,7 @@ A `certificate_attribute` block exports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Key Vault Certificate. * `update` - (Defaults to 30 minutes) Used when updating the Key Vault Certificate. diff --git a/website/docs/r/key_vault_key.html.markdown b/website/docs/r/key_vault_key.html.markdown index 5e4d2c5d6d86..7624bbd0b64d 100644 --- a/website/docs/r/key_vault_key.html.markdown +++ b/website/docs/r/key_vault_key.html.markdown @@ -105,7 +105,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Key Vault Key. * `update` - (Defaults to 30 minutes) Used when updating the Key Vault Key. diff --git a/website/docs/r/key_vault_managed_hardware_security_module.html.markdown b/website/docs/r/key_vault_managed_hardware_security_module.html.markdown index 3c072881827e..11e36f8d1fb0 100644 --- a/website/docs/r/key_vault_managed_hardware_security_module.html.markdown +++ b/website/docs/r/key_vault_managed_hardware_security_module.html.markdown @@ -69,7 +69,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `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. diff --git a/website/docs/r/key_vault_managed_storage_account.html.markdown b/website/docs/r/key_vault_managed_storage_account.html.markdown index f7dddde2ea60..19707311da8c 100644 --- a/website/docs/r/key_vault_managed_storage_account.html.markdown +++ b/website/docs/r/key_vault_managed_storage_account.html.markdown @@ -168,7 +168,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Key Vault Managed Storage Account. * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault Managed Storage Account. diff --git a/website/docs/r/key_vault_managed_storage_account_sas_token_definition.html.markdown b/website/docs/r/key_vault_managed_storage_account_sas_token_definition.html.markdown index f76e0f1740b2..7e17dd72f702 100644 --- a/website/docs/r/key_vault_managed_storage_account_sas_token_definition.html.markdown +++ b/website/docs/r/key_vault_managed_storage_account_sas_token_definition.html.markdown @@ -135,7 +135,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Key Vault. * `read` - (Defaults to 5 minutes) Used when retrieving the Key Vault. diff --git a/website/docs/r/key_vault_secret.html.markdown b/website/docs/r/key_vault_secret.html.markdown index e4ad17afb4bb..42936969e5dd 100644 --- a/website/docs/r/key_vault_secret.html.markdown +++ b/website/docs/r/key_vault_secret.html.markdown @@ -92,7 +92,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Key Vault Secret. * `update` - (Defaults to 30 minutes) Used when updating the Key Vault Secret. diff --git a/website/docs/r/kubernetes_cluster.html.markdown b/website/docs/r/kubernetes_cluster.html.markdown index 34ce0827334e..f4f7fdc0418a 100644 --- a/website/docs/r/kubernetes_cluster.html.markdown +++ b/website/docs/r/kubernetes_cluster.html.markdown @@ -358,7 +358,7 @@ A `default_node_pool` block supports the following: * `tags` - (Optional) A mapping of tags to assign to the Node Pool. -~> At this time there's a bug in the AKS API where Tags for a Node Pool are not stored in the correct case - you [may wish to use Terraform's `ignore_changes` functionality to ignore changes to the casing](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) until this is fixed in the AKS API. +~> At this time there's a bug in the AKS API where Tags for a Node Pool are not stored in the correct case - you [may wish to use Terraform's `ignore_changes` functionality to ignore changes to the casing](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) until this is fixed in the AKS API. * `ultra_ssd_enabled` - (Optional) Used to specify whether the UltraSSD is enabled in the Default Node Pool. Defaults to `false`. See [the documentation](https://docs.microsoft.com/azure/aks/use-ultra-disks) for more information. @@ -376,7 +376,7 @@ If `enable_auto_scaling` is set to `true`, then the following fields can also be * `node_count` - (Optional) The initial number of nodes which should exist in this Node Pool. If specified this must be between `1` and `1000` and between `min_count` and `max_count`. --> **Note:** If specified you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) to ignore changes to this field. +-> **Note:** If specified you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) to ignore changes to this field. If `enable_auto_scaling` is set to `false`, then the following fields can also be configured: @@ -826,7 +826,7 @@ The `secret_identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the Kubernetes Cluster. * `update` - (Defaults to 90 minutes) Used when updating the Kubernetes Cluster. diff --git a/website/docs/r/kubernetes_cluster_node_pool.html.markdown b/website/docs/r/kubernetes_cluster_node_pool.html.markdown index 75c0defc7b94..3086472eabb0 100644 --- a/website/docs/r/kubernetes_cluster_node_pool.html.markdown +++ b/website/docs/r/kubernetes_cluster_node_pool.html.markdown @@ -133,7 +133,7 @@ The following arguments are supported: * `tags` - (Optional) A mapping of tags to assign to the resource. -~> At this time there's a bug in the AKS API where Tags for a Node Pool are not stored in the correct case - you [may wish to use Terraform's `ignore_changes` functionality to ignore changes to the casing](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) until this is fixed in the AKS API. +~> At this time there's a bug in the AKS API where Tags for a Node Pool are not stored in the correct case - you [may wish to use Terraform's `ignore_changes` functionality to ignore changes to the casing](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) until this is fixed in the AKS API. * `scale_down_mode` - (Optional) Specifies how the node pool should deal with scaled-down nodes. Allowed values are `Delete` and `Deallocate`. Defaults to `Delete`. @@ -165,7 +165,7 @@ If `enable_auto_scaling` is set to `true`, then the following fields can also be * `node_count` - (Optional) The initial number of nodes which should exist within this Node Pool. Valid values are between `0` and `1000` (inclusive) for user pools and between `1` and `1000` (inclusive) for system pools and must be a value in the range `min_count` - `max_count`. --> **NOTE:** If you're specifying an initial number of nodes you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) to ignore changes to this field. +-> **NOTE:** If you're specifying an initial number of nodes you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) to ignore changes to this field. If `enable_auto_scaling` is set to `false`, then the following fields can also be configured: @@ -287,7 +287,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kubernetes Cluster Node Pool. * `update` - (Defaults to 60 minutes) Used when updating the Kubernetes Cluster Node Pool. diff --git a/website/docs/r/kusto_attached_database_configuration.html.markdown b/website/docs/r/kusto_attached_database_configuration.html.markdown index 92f42a9099d2..8d5e29024247 100644 --- a/website/docs/r/kusto_attached_database_configuration.html.markdown +++ b/website/docs/r/kusto_attached_database_configuration.html.markdown @@ -119,7 +119,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kusto Database. * `update` - (Defaults to 60 minutes) Used when updating the Kusto Database. diff --git a/website/docs/r/kusto_cluster.html.markdown b/website/docs/r/kusto_cluster.html.markdown index 8b51d802ffa0..29e4d6a990c4 100644 --- a/website/docs/r/kusto_cluster.html.markdown +++ b/website/docs/r/kusto_cluster.html.markdown @@ -147,7 +147,7 @@ An `identity` block exports the following: -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kusto Cluster. * `update` - (Defaults to 60 minutes) Used when updating the Kusto Cluster. diff --git a/website/docs/r/kusto_cluster_customer_managed_key.html.markdown b/website/docs/r/kusto_cluster_customer_managed_key.html.markdown index e5e5aa45addc..395ada409776 100644 --- a/website/docs/r/kusto_cluster_customer_managed_key.html.markdown +++ b/website/docs/r/kusto_cluster_customer_managed_key.html.markdown @@ -104,7 +104,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Kusto Cluster Customer Managed Key. * `read` - (Defaults to 5 minutes) Used when retrieving the Kusto Cluster Customer Managed Key. diff --git a/website/docs/r/kusto_cluster_managed_private_endpoint.html.markdown b/website/docs/r/kusto_cluster_managed_private_endpoint.html.markdown index a358d14e0481..9c3b8237204e 100644 --- a/website/docs/r/kusto_cluster_managed_private_endpoint.html.markdown +++ b/website/docs/r/kusto_cluster_managed_private_endpoint.html.markdown @@ -70,7 +70,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kusto Cluster Customer Managed Key. * `read` - (Defaults to 5 minutes) Used when retrieving the Kusto Cluster Customer Managed Key. diff --git a/website/docs/r/kusto_cluster_principal_assignment.html.markdown b/website/docs/r/kusto_cluster_principal_assignment.html.markdown index d030272a7802..b3445ca32a68 100644 --- a/website/docs/r/kusto_cluster_principal_assignment.html.markdown +++ b/website/docs/r/kusto_cluster_principal_assignment.html.markdown @@ -73,7 +73,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Data Explorer Cluster Principal Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Explorer Cluster Principal Assignment. diff --git a/website/docs/r/kusto_database.html.markdown b/website/docs/r/kusto_database.html.markdown index 31b3332b2ebc..8c0b4d48feef 100644 --- a/website/docs/r/kusto_database.html.markdown +++ b/website/docs/r/kusto_database.html.markdown @@ -69,7 +69,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kusto Database. * `update` - (Defaults to 60 minutes) Used when updating the Kusto Database. diff --git a/website/docs/r/kusto_database_principal_assignment.html.markdown b/website/docs/r/kusto_database_principal_assignment.html.markdown index 310baf664b97..252afe70c7ee 100644 --- a/website/docs/r/kusto_database_principal_assignment.html.markdown +++ b/website/docs/r/kusto_database_principal_assignment.html.markdown @@ -84,7 +84,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Kusto Database Principal Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Kusto Database Principal Assignment. diff --git a/website/docs/r/kusto_eventgrid_data_connection.html.markdown b/website/docs/r/kusto_eventgrid_data_connection.html.markdown index 1ba049cfc72d..71a4fea3df33 100644 --- a/website/docs/r/kusto_eventgrid_data_connection.html.markdown +++ b/website/docs/r/kusto_eventgrid_data_connection.html.markdown @@ -148,7 +148,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kusto Event Grid Data Connection. * `update` - (Defaults to 60 minutes) Used when updating the Kusto Event Grid Data Connection. diff --git a/website/docs/r/kusto_eventhub_data_connection.html.markdown b/website/docs/r/kusto_eventhub_data_connection.html.markdown index 95639418f896..748256990a22 100644 --- a/website/docs/r/kusto_eventhub_data_connection.html.markdown +++ b/website/docs/r/kusto_eventhub_data_connection.html.markdown @@ -118,7 +118,7 @@ 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: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kusto EventHub Data Connection. * `update` - (Defaults to 60 minutes) Used when updating the Kusto EventHub Data Connection. diff --git a/website/docs/r/kusto_iothub_data_connection.html.markdown b/website/docs/r/kusto_iothub_data_connection.html.markdown index 9ee882fd319d..d5b33382d8ea 100644 --- a/website/docs/r/kusto_iothub_data_connection.html.markdown +++ b/website/docs/r/kusto_iothub_data_connection.html.markdown @@ -120,7 +120,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Kusto IotHub Data Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the Kusto IotHub Data Connection. diff --git a/website/docs/r/kusto_script.html.markdown b/website/docs/r/kusto_script.html.markdown index 5dd1a00e2a34..2a803d6185b8 100644 --- a/website/docs/r/kusto_script.html.markdown +++ b/website/docs/r/kusto_script.html.markdown @@ -118,7 +118,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Kusto Script. * `read` - (Defaults to 5 minutes) Used when retrieving the Kusto Script. diff --git a/website/docs/r/lb.html.markdown b/website/docs/r/lb.html.markdown index 7f9a6705c49e..cc0ee07ce7f1 100644 --- a/website/docs/r/lb.html.markdown +++ b/website/docs/r/lb.html.markdown @@ -103,7 +103,7 @@ A `frontend_ip_configuration` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Balancer. * `update` - (Defaults to 30 minutes) Used when updating the Load Balancer. diff --git a/website/docs/r/lb_backend_address_pool.html.markdown b/website/docs/r/lb_backend_address_pool.html.markdown index 36140e72930f..51913d213254 100644 --- a/website/docs/r/lb_backend_address_pool.html.markdown +++ b/website/docs/r/lb_backend_address_pool.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Balancer Backend Address Pool. * `update` - (Defaults to 30 minutes) Used when updating the Load Balancer Backend Address Pool. diff --git a/website/docs/r/lb_backend_address_pool_address.html.markdown b/website/docs/r/lb_backend_address_pool_address.html.markdown index 9e44c4285cf5..852aef83e256 100644 --- a/website/docs/r/lb_backend_address_pool_address.html.markdown +++ b/website/docs/r/lb_backend_address_pool_address.html.markdown @@ -72,7 +72,7 @@ A `inbound_nat_rule_port_mapping` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Backend Address Pool Address. * `read` - (Defaults to 5 minutes) Used when retrieving the Backend Address Pool Address. diff --git a/website/docs/r/lb_nat_pool.html.markdown b/website/docs/r/lb_nat_pool.html.markdown index c994facce7ac..66fb752029a2 100644 --- a/website/docs/r/lb_nat_pool.html.markdown +++ b/website/docs/r/lb_nat_pool.html.markdown @@ -76,7 +76,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Balancer NAT Pool. * `update` - (Defaults to 30 minutes) Used when updating the Load Balancer NAT Pool. diff --git a/website/docs/r/lb_nat_rule.html.markdown b/website/docs/r/lb_nat_rule.html.markdown index ef42570bca3d..122d8c62fbc9 100644 --- a/website/docs/r/lb_nat_rule.html.markdown +++ b/website/docs/r/lb_nat_rule.html.markdown @@ -95,7 +95,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Balancer NAT Rule. * `update` - (Defaults to 30 minutes) Used when updating the Load Balancer NAT Rule. diff --git a/website/docs/r/lb_outbound_rule.html.markdown b/website/docs/r/lb_outbound_rule.html.markdown index f16eb4b1354f..613359df875b 100644 --- a/website/docs/r/lb_outbound_rule.html.markdown +++ b/website/docs/r/lb_outbound_rule.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Balancer Outbound Rule. * `update` - (Defaults to 30 minutes) Used when updating the Load Balancer Outbound Rule. diff --git a/website/docs/r/lb_probe.html.markdown b/website/docs/r/lb_probe.html.markdown index fba3b118ef8b..32b60a859777 100644 --- a/website/docs/r/lb_probe.html.markdown +++ b/website/docs/r/lb_probe.html.markdown @@ -66,7 +66,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Balancer Probe. * `update` - (Defaults to 30 minutes) Used when updating the Load Balancer Probe. diff --git a/website/docs/r/lb_rule.html.markdown b/website/docs/r/lb_rule.html.markdown index 89d6d9f8fc84..3ca261e819f3 100644 --- a/website/docs/r/lb_rule.html.markdown +++ b/website/docs/r/lb_rule.html.markdown @@ -77,7 +77,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Balancer Rule. * `update` - (Defaults to 30 minutes) Used when updating the Load Balancer Rule. diff --git a/website/docs/r/lighthouse_assignment.html.markdown b/website/docs/r/lighthouse_assignment.html.markdown index 40b4d47bf52a..0f38eb60c709 100644 --- a/website/docs/r/lighthouse_assignment.html.markdown +++ b/website/docs/r/lighthouse_assignment.html.markdown @@ -41,7 +41,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Lighthouse Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Lighthouse Assignment. diff --git a/website/docs/r/lighthouse_definition.html.markdown b/website/docs/r/lighthouse_definition.html.markdown index 2dffad9caaa7..471be90e4446 100644 --- a/website/docs/r/lighthouse_definition.html.markdown +++ b/website/docs/r/lighthouse_definition.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Lighthouse Definition. * `update` - (Defaults to 30 minutes) Used when updating the Lighthouse Definition. diff --git a/website/docs/r/linux_function_app.html.markdown b/website/docs/r/linux_function_app.html.markdown index 2dfab552decb..74ef289e5da8 100644 --- a/website/docs/r/linux_function_app.html.markdown +++ b/website/docs/r/linux_function_app.html.markdown @@ -509,7 +509,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Linux Function App. * `read` - (Defaults to 5 minutes) Used when retrieving the Linux Function App. diff --git a/website/docs/r/linux_function_app_slot.html.markdown b/website/docs/r/linux_function_app_slot.html.markdown index e715fb05d347..6cf3fb286c43 100644 --- a/website/docs/r/linux_function_app_slot.html.markdown +++ b/website/docs/r/linux_function_app_slot.html.markdown @@ -519,7 +519,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Linux Function App Slot. * `update` - (Defaults to 30 minutes) Used when updating the Linux Function App Slot. diff --git a/website/docs/r/linux_virtual_machine.html.markdown b/website/docs/r/linux_virtual_machine.html.markdown index 979c8c2a3899..58d02f81532e 100644 --- a/website/docs/r/linux_virtual_machine.html.markdown +++ b/website/docs/r/linux_virtual_machine.html.markdown @@ -356,7 +356,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 45 minutes) Used when creating the Linux Virtual Machine. * `update` - (Defaults to 45 minutes) Used when updating the Linux Virtual Machine. diff --git a/website/docs/r/linux_virtual_machine_scale_set.html.markdown b/website/docs/r/linux_virtual_machine_scale_set.html.markdown index 8d93dde0352a..a943da3b0ee9 100644 --- a/website/docs/r/linux_virtual_machine_scale_set.html.markdown +++ b/website/docs/r/linux_virtual_machine_scale_set.html.markdown @@ -102,7 +102,7 @@ The following arguments are supported: * `instances` - (Required) The number of Virtual Machines in the Scale Set. --> **NOTE:** If you're using AutoScaling, you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) to ignore changes to this field. +-> **NOTE:** If you're using AutoScaling, you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) to ignore changes to this field. * `sku` - (Required) The Virtual Machine SKU for the Scale Set, such as `Standard_F2`. @@ -550,7 +550,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Linux Virtual Machine Scale Set. * `read` - (Defaults to 5 minutes) Used when reading the Linux Virtual Machine Scale Set. diff --git a/website/docs/r/linux_web_app.html.markdown b/website/docs/r/linux_web_app.html.markdown index c850dd47d7c5..bc38ee8bca68 100644 --- a/website/docs/r/linux_web_app.html.markdown +++ b/website/docs/r/linux_web_app.html.markdown @@ -592,7 +592,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Linux Web App. * `read` - (Defaults to 5 minutes) Used when retrieving the Linux Web App. diff --git a/website/docs/r/linux_web_app_slot.html.markdown b/website/docs/r/linux_web_app_slot.html.markdown index 2333a4e3dfe5..02f7a39a47a3 100644 --- a/website/docs/r/linux_web_app_slot.html.markdown +++ b/website/docs/r/linux_web_app_slot.html.markdown @@ -590,7 +590,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Linux Web App. * `read` - (Defaults to 5 minutes) Used when retrieving the Linux Web App. diff --git a/website/docs/r/load_test.html.markdown b/website/docs/r/load_test.html.markdown index 25187765443c..f0d131164835 100644 --- a/website/docs/r/load_test.html.markdown +++ b/website/docs/r/load_test.html.markdown @@ -53,7 +53,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Load Test. * `read` - (Defaults to 5 minutes) Used when retrieving the Load Test. diff --git a/website/docs/r/local_network_gateway.html.markdown b/website/docs/r/local_network_gateway.html.markdown index 1c9a5c69da60..e3c9e94a4a96 100644 --- a/website/docs/r/local_network_gateway.html.markdown +++ b/website/docs/r/local_network_gateway.html.markdown @@ -74,7 +74,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Local Network Gateway. * `update` - (Defaults to 30 minutes) Used when updating the Local Network Gateway. diff --git a/website/docs/r/log_analytics_cluster.html.markdown b/website/docs/r/log_analytics_cluster.html.markdown index 517c68898625..08e9aef753c3 100644 --- a/website/docs/r/log_analytics_cluster.html.markdown +++ b/website/docs/r/log_analytics_cluster.html.markdown @@ -87,7 +87,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 6 hours) Used when creating the Log Analytics Cluster. * `read` - (Defaults to 5 minutes) Used when retrieving the Log Analytics Cluster. diff --git a/website/docs/r/log_analytics_cluster_customer_managed_key.html.markdown b/website/docs/r/log_analytics_cluster_customer_managed_key.html.markdown index 1332ad5f165e..c86ac69ded3b 100644 --- a/website/docs/r/log_analytics_cluster_customer_managed_key.html.markdown +++ b/website/docs/r/log_analytics_cluster_customer_managed_key.html.markdown @@ -112,7 +112,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 6 hours) Used when creating the Log Analytics Cluster Customer Managed Key. * `read` - (Defaults to 5 minutes) Used when retrieving the Log Analytics Cluster Customer Managed Key. diff --git a/website/docs/r/log_analytics_data_export_rule.html.markdown b/website/docs/r/log_analytics_data_export_rule.html.markdown index 0cdd63795723..1b2b925f9622 100644 --- a/website/docs/r/log_analytics_data_export_rule.html.markdown +++ b/website/docs/r/log_analytics_data_export_rule.html.markdown @@ -70,7 +70,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Data Export Rule. * `update` - (Defaults to 30 minutes) Used when updating the Log Analytics Data Export Rule. diff --git a/website/docs/r/log_analytics_datasource_windows_event.html.markdown b/website/docs/r/log_analytics_datasource_windows_event.html.markdown index 8bfad50bd98d..a2569608154d 100644 --- a/website/docs/r/log_analytics_datasource_windows_event.html.markdown +++ b/website/docs/r/log_analytics_datasource_windows_event.html.markdown @@ -60,7 +60,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Windows Event DataSource. * `read` - (Defaults to 5 minutes) Used when retrieving the Log Analytics Windows Event DataSource. diff --git a/website/docs/r/log_analytics_datasource_windows_performance_counter.html.markdown b/website/docs/r/log_analytics_datasource_windows_performance_counter.html.markdown index 2e1fc9c76000..16c60c720aa7 100644 --- a/website/docs/r/log_analytics_datasource_windows_performance_counter.html.markdown +++ b/website/docs/r/log_analytics_datasource_windows_performance_counter.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Windows Performance Counter DataSource. * `read` - (Defaults to 5 minutes) Used when retrieving the Log Analytics Windows Performance Counter DataSource. diff --git a/website/docs/r/log_analytics_linked_service.html.markdown b/website/docs/r/log_analytics_linked_service.html.markdown index 9c9ec8b27279..c941b9528f77 100644 --- a/website/docs/r/log_analytics_linked_service.html.markdown +++ b/website/docs/r/log_analytics_linked_service.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Workspace. * `update` - (Defaults to 30 minutes) Used when updating the Log Analytics Workspace. diff --git a/website/docs/r/log_analytics_linked_storage_account.html.markdown b/website/docs/r/log_analytics_linked_storage_account.html.markdown index 940a93b8c88e..edc88f8becf5 100644 --- a/website/docs/r/log_analytics_linked_storage_account.html.markdown +++ b/website/docs/r/log_analytics_linked_storage_account.html.markdown @@ -61,7 +61,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Linked Storage Account. * `read` - (Defaults to 5 minutes) Used when retrieving the Log Analytics Linked Storage Account. diff --git a/website/docs/r/log_analytics_query_pack.html.markdown b/website/docs/r/log_analytics_query_pack.html.markdown index 116fbe8fd528..82415a94b944 100644 --- a/website/docs/r/log_analytics_query_pack.html.markdown +++ b/website/docs/r/log_analytics_query_pack.html.markdown @@ -47,7 +47,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Query Pack. * `read` - (Defaults to 5 minutes) Used when retrieving the Log Analytics Query Pack. diff --git a/website/docs/r/log_analytics_saved_search.html.markdown b/website/docs/r/log_analytics_saved_search.html.markdown index eaea9fcd4584..9728db093f67 100644 --- a/website/docs/r/log_analytics_saved_search.html.markdown +++ b/website/docs/r/log_analytics_saved_search.html.markdown @@ -64,7 +64,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Saved Search. * `update` - (Defaults to 30 minutes) Used when updating the Log Analytics Saved Search. diff --git a/website/docs/r/log_analytics_solution.html.markdown b/website/docs/r/log_analytics_solution.html.markdown index 40175b7822d6..952bc4e90571 100644 --- a/website/docs/r/log_analytics_solution.html.markdown +++ b/website/docs/r/log_analytics_solution.html.markdown @@ -78,7 +78,7 @@ A `plan` block includes: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Solution. * `update` - (Defaults to 30 minutes) Used when updating the Log Analytics Solution. diff --git a/website/docs/r/log_analytics_storage_insights.html.markdown b/website/docs/r/log_analytics_storage_insights.html.markdown index 61e3d0597acc..2935805d2910 100644 --- a/website/docs/r/log_analytics_storage_insights.html.markdown +++ b/website/docs/r/log_analytics_storage_insights.html.markdown @@ -70,7 +70,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Storage Insights. * `read` - (Defaults to 5 minutes) Used when retrieving the Log Analytics Storage Insights. diff --git a/website/docs/r/log_analytics_workspace.html.markdown b/website/docs/r/log_analytics_workspace.html.markdown index 16308837a553..046f72f3b29e 100644 --- a/website/docs/r/log_analytics_workspace.html.markdown +++ b/website/docs/r/log_analytics_workspace.html.markdown @@ -75,7 +75,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Analytics Workspace. * `update` - (Defaults to 30 minutes) Used when updating the Log Analytics Workspace. diff --git a/website/docs/r/logic_app_action_custom.html.markdown b/website/docs/r/logic_app_action_custom.html.markdown index b0600c50b6ae..5d1fc9a2e012 100644 --- a/website/docs/r/logic_app_action_custom.html.markdown +++ b/website/docs/r/logic_app_action_custom.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Custom Action. * `update` - (Defaults to 30 minutes) Used when updating the Logic App Custom Action. diff --git a/website/docs/r/logic_app_action_http.html.markdown b/website/docs/r/logic_app_action_http.html.markdown index 2ad3b9ce75dc..386ea244e87f 100644 --- a/website/docs/r/logic_app_action_http.html.markdown +++ b/website/docs/r/logic_app_action_http.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App HTTP Action. * `update` - (Defaults to 30 minutes) Used when updating the Logic App HTTP Action. diff --git a/website/docs/r/logic_app_integration_account.html.markdown b/website/docs/r/logic_app_integration_account.html.markdown index cea7d3ad66d3..69d71a4eb080 100644 --- a/website/docs/r/logic_app_integration_account.html.markdown +++ b/website/docs/r/logic_app_integration_account.html.markdown @@ -55,7 +55,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account. diff --git a/website/docs/r/logic_app_integration_account_agreement.html.markdown b/website/docs/r/logic_app_integration_account_agreement.html.markdown index 212354833fe2..e7cb65d9d8a0 100644 --- a/website/docs/r/logic_app_integration_account_agreement.html.markdown +++ b/website/docs/r/logic_app_integration_account_agreement.html.markdown @@ -116,7 +116,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Agreement. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Agreement. diff --git a/website/docs/r/logic_app_integration_account_assembly.html.markdown b/website/docs/r/logic_app_integration_account_assembly.html.markdown index c23ba16723dc..c35e1b455202 100644 --- a/website/docs/r/logic_app_integration_account_assembly.html.markdown +++ b/website/docs/r/logic_app_integration_account_assembly.html.markdown @@ -62,7 +62,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Assembly. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Assembly. diff --git a/website/docs/r/logic_app_integration_account_batch_configuration.html.markdown b/website/docs/r/logic_app_integration_account_batch_configuration.html.markdown index 8e49e8e9aff5..414b23233b6c 100644 --- a/website/docs/r/logic_app_integration_account_batch_configuration.html.markdown +++ b/website/docs/r/logic_app_integration_account_batch_configuration.html.markdown @@ -109,7 +109,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Batch Configuration. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Batch Configuration. diff --git a/website/docs/r/logic_app_integration_account_certificate.html.markdown b/website/docs/r/logic_app_integration_account_certificate.html.markdown index b79de62ed98e..39abcda74814 100644 --- a/website/docs/r/logic_app_integration_account_certificate.html.markdown +++ b/website/docs/r/logic_app_integration_account_certificate.html.markdown @@ -67,7 +67,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Certificate. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Certificate. diff --git a/website/docs/r/logic_app_integration_account_map.html.markdown b/website/docs/r/logic_app_integration_account_map.html.markdown index 537429fff7b6..0c4b383da2d0 100644 --- a/website/docs/r/logic_app_integration_account_map.html.markdown +++ b/website/docs/r/logic_app_integration_account_map.html.markdown @@ -58,7 +58,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Map. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Map. diff --git a/website/docs/r/logic_app_integration_account_partner.html.markdown b/website/docs/r/logic_app_integration_account_partner.html.markdown index 8f447d802b56..597399022bf6 100644 --- a/website/docs/r/logic_app_integration_account_partner.html.markdown +++ b/website/docs/r/logic_app_integration_account_partner.html.markdown @@ -67,7 +67,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Partner. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Partner. diff --git a/website/docs/r/logic_app_integration_account_schema.html.markdown b/website/docs/r/logic_app_integration_account_schema.html.markdown index 9cbf31b52f44..7eaea9b6c330 100644 --- a/website/docs/r/logic_app_integration_account_schema.html.markdown +++ b/website/docs/r/logic_app_integration_account_schema.html.markdown @@ -57,7 +57,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Schema. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Schema. diff --git a/website/docs/r/logic_app_integration_account_session.html.markdown b/website/docs/r/logic_app_integration_account_session.html.markdown index 762fbfb9fc63..945e0d212086 100644 --- a/website/docs/r/logic_app_integration_account_session.html.markdown +++ b/website/docs/r/logic_app_integration_account_session.html.markdown @@ -58,7 +58,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Session. * `read` - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Session. diff --git a/website/docs/r/logic_app_standard.html.markdown b/website/docs/r/logic_app_standard.html.markdown index 2c80e3ed6774..728511aa2586 100644 --- a/website/docs/r/logic_app_standard.html.markdown +++ b/website/docs/r/logic_app_standard.html.markdown @@ -292,7 +292,7 @@ The `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App * `update` - (Defaults to 30 minutes) Used when updating the Logic App diff --git a/website/docs/r/logic_app_trigger_custom.html.markdown b/website/docs/r/logic_app_trigger_custom.html.markdown index bdb5a240b465..203cbf9d2060 100644 --- a/website/docs/r/logic_app_trigger_custom.html.markdown +++ b/website/docs/r/logic_app_trigger_custom.html.markdown @@ -63,7 +63,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Custom Trigger. * `update` - (Defaults to 30 minutes) Used when updating the Logic App Custom Trigger. diff --git a/website/docs/r/logic_app_trigger_http_request.html.markdown b/website/docs/r/logic_app_trigger_http_request.html.markdown index 713d753eded0..6ce6ec879590 100644 --- a/website/docs/r/logic_app_trigger_http_request.html.markdown +++ b/website/docs/r/logic_app_trigger_http_request.html.markdown @@ -72,7 +72,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App HTTP Request Trigger. * `update` - (Defaults to 30 minutes) Used when updating the Logic App HTTP Request Trigger. diff --git a/website/docs/r/logic_app_trigger_recurrence.html.markdown b/website/docs/r/logic_app_trigger_recurrence.html.markdown index 8c4cdf0f020a..c47d2a837f85 100644 --- a/website/docs/r/logic_app_trigger_recurrence.html.markdown +++ b/website/docs/r/logic_app_trigger_recurrence.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Recurrence Trigger. * `update` - (Defaults to 30 minutes) Used when updating the Logic App Recurrence Trigger. diff --git a/website/docs/r/logic_app_workflow.html.markdown b/website/docs/r/logic_app_workflow.html.markdown index 5b9bcb33ff8c..f4ad35b9b631 100644 --- a/website/docs/r/logic_app_workflow.html.markdown +++ b/website/docs/r/logic_app_workflow.html.markdown @@ -149,7 +149,7 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logic App Workflow. * `update` - (Defaults to 30 minutes) Used when updating the Logic App Workflow. diff --git a/website/docs/r/logz_monitor.html.markdown b/website/docs/r/logz_monitor.html.markdown index c0bc0116ef17..2ac2284a5359 100644 --- a/website/docs/r/logz_monitor.html.markdown +++ b/website/docs/r/logz_monitor.html.markdown @@ -102,7 +102,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the logz Monitor. * `read` - (Defaults to 5 minutes) Used when retrieving the logz Monitor. diff --git a/website/docs/r/logz_sub_account.html.markdown b/website/docs/r/logz_sub_account.html.markdown index 080fdf89dbb6..47154eefd2a3 100644 --- a/website/docs/r/logz_sub_account.html.markdown +++ b/website/docs/r/logz_sub_account.html.markdown @@ -88,7 +88,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the logz Sub Account. * `read` - (Defaults to 5 minutes) Used when retrieving the logz Sub Account. diff --git a/website/docs/r/logz_sub_account_tag_rule.html.markdown b/website/docs/r/logz_sub_account_tag_rule.html.markdown index 412a8d838dd4..a8f09bcbaefe 100644 --- a/website/docs/r/logz_sub_account_tag_rule.html.markdown +++ b/website/docs/r/logz_sub_account_tag_rule.html.markdown @@ -103,7 +103,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Logz Sub Account Tag Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Logz Sub Account Tag Rule. diff --git a/website/docs/r/logz_tag_rule.html.markdown b/website/docs/r/logz_tag_rule.html.markdown index 15ad3f06d459..f9fdfbfe1c8f 100644 --- a/website/docs/r/logz_tag_rule.html.markdown +++ b/website/docs/r/logz_tag_rule.html.markdown @@ -90,7 +90,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the logz Tag Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the logz Tag Rule. diff --git a/website/docs/r/machine_learning_compute_cluster.html.markdown b/website/docs/r/machine_learning_compute_cluster.html.markdown index d09c30832261..ba927754df45 100644 --- a/website/docs/r/machine_learning_compute_cluster.html.markdown +++ b/website/docs/r/machine_learning_compute_cluster.html.markdown @@ -174,7 +174,7 @@ A `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Machine Learning Compute Cluster. * `read` - (Defaults to 5 minutes) Used when retrieving the Machine Learning Compute Cluster. diff --git a/website/docs/r/machine_learning_compute_instance.html.markdown b/website/docs/r/machine_learning_compute_instance.html.markdown index 7d76d32a3ea1..bab000b28005 100644 --- a/website/docs/r/machine_learning_compute_instance.html.markdown +++ b/website/docs/r/machine_learning_compute_instance.html.markdown @@ -173,7 +173,7 @@ A `ssh` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Machine Learning Compute Instance. * `read` - (Defaults to 5 minutes) Used when retrieving the Machine Learning Compute Instance. diff --git a/website/docs/r/machine_learning_inference_cluster.html.markdown b/website/docs/r/machine_learning_inference_cluster.html.markdown index ad0cc3da5a38..4d97915e479b 100644 --- a/website/docs/r/machine_learning_inference_cluster.html.markdown +++ b/website/docs/r/machine_learning_inference_cluster.html.markdown @@ -178,7 +178,7 @@ A `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Machine Learning Inference Cluster. * `read` - (Defaults to 5 minutes) Used when retrieving the Machine Learning Inference Cluster. diff --git a/website/docs/r/machine_learning_synapse_spark.html.markdown b/website/docs/r/machine_learning_synapse_spark.html.markdown index 3dfca1943d77..653ae1e0d1e7 100644 --- a/website/docs/r/machine_learning_synapse_spark.html.markdown +++ b/website/docs/r/machine_learning_synapse_spark.html.markdown @@ -147,7 +147,7 @@ A `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Machine Learning Synapse Spark. * `read` - (Defaults to 5 minutes) Used when retrieving the Machine Learning Synapse Spark. diff --git a/website/docs/r/machine_learning_workspace.html.markdown b/website/docs/r/machine_learning_workspace.html.markdown index 08cfef8e8e03..56147fa251c0 100644 --- a/website/docs/r/machine_learning_workspace.html.markdown +++ b/website/docs/r/machine_learning_workspace.html.markdown @@ -420,7 +420,7 @@ An `identity` block exports the following: ### Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Machine Learning Workspace. * `update` - (Defaults to 30 minutes) Used when updating the Machine Learning Workspace. diff --git a/website/docs/r/maintenance_assignment_dedicated_host.html.markdown b/website/docs/r/maintenance_assignment_dedicated_host.html.markdown index 195291169420..565c76c5bdee 100644 --- a/website/docs/r/maintenance_assignment_dedicated_host.html.markdown +++ b/website/docs/r/maintenance_assignment_dedicated_host.html.markdown @@ -69,7 +69,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Maintenance Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Maintenance Assignment. diff --git a/website/docs/r/maintenance_assignment_virtual_machine.html.markdown b/website/docs/r/maintenance_assignment_virtual_machine.html.markdown index 3305ec035081..46c0b7982032 100644 --- a/website/docs/r/maintenance_assignment_virtual_machine.html.markdown +++ b/website/docs/r/maintenance_assignment_virtual_machine.html.markdown @@ -108,7 +108,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Maintenance Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Maintenance Assignment. diff --git a/website/docs/r/maintenance_assignment_virtual_machine_scale_set.html.markdown b/website/docs/r/maintenance_assignment_virtual_machine_scale_set.html.markdown index 0c0913ff34c0..adbaa548c083 100644 --- a/website/docs/r/maintenance_assignment_virtual_machine_scale_set.html.markdown +++ b/website/docs/r/maintenance_assignment_virtual_machine_scale_set.html.markdown @@ -196,7 +196,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Maintenance Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Maintenance Assignment. diff --git a/website/docs/r/maintenance_configuration.html.markdown b/website/docs/r/maintenance_configuration.html.markdown index cfe6111838bc..c18e09332d66 100644 --- a/website/docs/r/maintenance_configuration.html.markdown +++ b/website/docs/r/maintenance_configuration.html.markdown @@ -78,7 +78,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Maintenance Configuration. * `update` - (Defaults to 30 minutes) Used when updating the Maintenance Configuration. diff --git a/website/docs/r/managed_application.html.markdown b/website/docs/r/managed_application.html.markdown index df046a04fffe..d41e93b80b70 100644 --- a/website/docs/r/managed_application.html.markdown +++ b/website/docs/r/managed_application.html.markdown @@ -109,7 +109,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Managed Application. * `update` - (Defaults to 30 minutes) Used when updating the Managed Application. diff --git a/website/docs/r/managed_application_definition.html.markdown b/website/docs/r/managed_application_definition.html.markdown index 5b0c80628b54..a1fa5bd3bab5 100644 --- a/website/docs/r/managed_application_definition.html.markdown +++ b/website/docs/r/managed_application_definition.html.markdown @@ -88,7 +88,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Managed Application Definition. * `update` - (Defaults to 30 minutes) Used when updating the Managed Application Definition. diff --git a/website/docs/r/managed_disk.html.markdown b/website/docs/r/managed_disk.html.markdown index a7a5d88da381..2dd07e2405ec 100644 --- a/website/docs/r/managed_disk.html.markdown +++ b/website/docs/r/managed_disk.html.markdown @@ -207,7 +207,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Managed Disk. * `update` - (Defaults to 30 minutes) Used when updating the Managed Disk. diff --git a/website/docs/r/management_group.html.markdown b/website/docs/r/management_group.html.markdown index 1ecbdf113739..25d65620fe1c 100644 --- a/website/docs/r/management_group.html.markdown +++ b/website/docs/r/management_group.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Management Group. * `update` - (Defaults to 30 minutes) Used when updating the Management Group. diff --git a/website/docs/r/management_group_policy_assignment.html.markdown b/website/docs/r/management_group_policy_assignment.html.markdown index a48141b20699..f62b895f57a5 100644 --- a/website/docs/r/management_group_policy_assignment.html.markdown +++ b/website/docs/r/management_group_policy_assignment.html.markdown @@ -112,7 +112,7 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Assignment for this Management Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Policy Assignment for this Management Group. diff --git a/website/docs/r/management_group_policy_exemption.html.markdown b/website/docs/r/management_group_policy_exemption.html.markdown index 7c17279d0e9b..e036fd4f5dbd 100644 --- a/website/docs/r/management_group_policy_exemption.html.markdown +++ b/website/docs/r/management_group_policy_exemption.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Exemption. * `update` - (Defaults to 30 minutes) Used when updating the Policy Exemption. diff --git a/website/docs/r/management_group_policy_remediation.html.markdown b/website/docs/r/management_group_policy_remediation.html.markdown index 69c5779859ad..ea05e8b1915c 100644 --- a/website/docs/r/management_group_policy_remediation.html.markdown +++ b/website/docs/r/management_group_policy_remediation.html.markdown @@ -63,7 +63,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Remediation. * `update` - (Defaults to 30 minutes) Used when updating the Policy Remediation. diff --git a/website/docs/r/management_group_subscription_association.html.markdown b/website/docs/r/management_group_subscription_association.html.markdown index 508d4964fd2c..dd5b41baef78 100644 --- a/website/docs/r/management_group_subscription_association.html.markdown +++ b/website/docs/r/management_group_subscription_association.html.markdown @@ -45,7 +45,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the Management. * `read` - (Defaults to 5 minutes) Used when retrieving the Management. diff --git a/website/docs/r/management_group_template_deployment.html.markdown b/website/docs/r/management_group_template_deployment.html.markdown index d88a06b8e6c4..088943d1bf1f 100644 --- a/website/docs/r/management_group_template_deployment.html.markdown +++ b/website/docs/r/management_group_template_deployment.html.markdown @@ -140,7 +140,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 3 hours) Used when creating the Management Group Template Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Management Group Template Deployment. diff --git a/website/docs/r/management_lock.html.markdown b/website/docs/r/management_lock.html.markdown index 7234787e303d..2cdf51a9b115 100644 --- a/website/docs/r/management_lock.html.markdown +++ b/website/docs/r/management_lock.html.markdown @@ -87,7 +87,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Management Lock. * `update` - (Defaults to 30 minutes) Used when updating the Management Lock. diff --git a/website/docs/r/maps_account.html.markdown b/website/docs/r/maps_account.html.markdown index 4a98d0ea534b..e565540df5da 100644 --- a/website/docs/r/maps_account.html.markdown +++ b/website/docs/r/maps_account.html.markdown @@ -56,7 +56,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Maps Account. * `update` - (Defaults to 30 minutes) Used when updating the Maps Account. diff --git a/website/docs/r/maps_creator.html.markdown b/website/docs/r/maps_creator.html.markdown index 181c716c5727..6b4942532a99 100644 --- a/website/docs/r/maps_creator.html.markdown +++ b/website/docs/r/maps_creator.html.markdown @@ -62,7 +62,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Maps Creator. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Maps Creator. diff --git a/website/docs/r/mariadb_configuration.html.markdown b/website/docs/r/mariadb_configuration.html.markdown index d226c0248b1d..e1eabefe7079 100644 --- a/website/docs/r/mariadb_configuration.html.markdown +++ b/website/docs/r/mariadb_configuration.html.markdown @@ -57,7 +57,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MariaDB Configuration. * `update` - (Defaults to 30 minutes) Used when updating the MariaDB Configuration. diff --git a/website/docs/r/mariadb_database.html.markdown b/website/docs/r/mariadb_database.html.markdown index 9d03e89ae4a1..71569309d864 100644 --- a/website/docs/r/mariadb_database.html.markdown +++ b/website/docs/r/mariadb_database.html.markdown @@ -67,7 +67,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the MariaDB Database. * `update` - (Defaults to 60 minutes) Used when updating the MariaDB Database. diff --git a/website/docs/r/mariadb_firewall_rule.html.markdown b/website/docs/r/mariadb_firewall_rule.html.markdown index fc0417af8eae..3f6a43907f37 100644 --- a/website/docs/r/mariadb_firewall_rule.html.markdown +++ b/website/docs/r/mariadb_firewall_rule.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MariaDB Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the MariaDB Firewall Rule. diff --git a/website/docs/r/mariadb_server.html.markdown b/website/docs/r/mariadb_server.html.markdown index bdefb83d8385..6706c4b7225f 100644 --- a/website/docs/r/mariadb_server.html.markdown +++ b/website/docs/r/mariadb_server.html.markdown @@ -90,7 +90,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the MariaDB Server. * `update` - (Defaults to 60 minutes) Used when updating the MariaDB Server. diff --git a/website/docs/r/mariadb_virtual_network_rule.html.markdown b/website/docs/r/mariadb_virtual_network_rule.html.markdown index 8a536c10630b..a6def8d27663 100644 --- a/website/docs/r/mariadb_virtual_network_rule.html.markdown +++ b/website/docs/r/mariadb_virtual_network_rule.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MariaDB Virtual Network Rule. * `update` - (Defaults to 30 minutes) Used when updating the MariaDB Virtual Network Rule. diff --git a/website/docs/r/marketplace_agreement.html.markdown b/website/docs/r/marketplace_agreement.html.markdown index 2ce16e420954..df2cd6f92134 100644 --- a/website/docs/r/marketplace_agreement.html.markdown +++ b/website/docs/r/marketplace_agreement.html.markdown @@ -38,7 +38,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Marketplace Agreement. * `update` - (Defaults to 30 minutes) Used when updating the Marketplace Agreement. diff --git a/website/docs/r/media_asset.html.markdown b/website/docs/r/media_asset.html.markdown index ae2bed1fc11f..7cb95f9dbc72 100644 --- a/website/docs/r/media_asset.html.markdown +++ b/website/docs/r/media_asset.html.markdown @@ -74,7 +74,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Media Asset. * `read` - (Defaults to 5 minutes) Used when retrieving the Media Asset. diff --git a/website/docs/r/media_asset_filter.html.markdown b/website/docs/r/media_asset_filter.html.markdown index 885f2d9af04b..5ad40c81c9a2 100644 --- a/website/docs/r/media_asset_filter.html.markdown +++ b/website/docs/r/media_asset_filter.html.markdown @@ -153,7 +153,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Asset Filter. * `read` - (Defaults to 5 minutes) Used when retrieving the Asset Filter. diff --git a/website/docs/r/media_content_key_policy.html.markdown b/website/docs/r/media_content_key_policy.html.markdown index c2fd7cd758e3..c0b1ced86a25 100644 --- a/website/docs/r/media_content_key_policy.html.markdown +++ b/website/docs/r/media_content_key_policy.html.markdown @@ -263,7 +263,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Resource Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group. diff --git a/website/docs/r/media_job.html.markdown b/website/docs/r/media_job.html.markdown index e9cd9acbd171..2e5cf8d85b78 100644 --- a/website/docs/r/media_job.html.markdown +++ b/website/docs/r/media_job.html.markdown @@ -127,7 +127,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Media Job. * `read` - (Defaults to 5 minutes) Used when retrieving the Media Job. diff --git a/website/docs/r/media_live_event.html.markdown b/website/docs/r/media_live_event.html.markdown index 0c3a4f0a085c..85b010ab02ac 100644 --- a/website/docs/r/media_live_event.html.markdown +++ b/website/docs/r/media_live_event.html.markdown @@ -171,7 +171,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Live Event. * `read` - (Defaults to 5 minutes) Used when retrieving the Live Event. diff --git a/website/docs/r/media_live_output.html.markdown b/website/docs/r/media_live_output.html.markdown index ff99937c15f2..289c4566dfdf 100644 --- a/website/docs/r/media_live_output.html.markdown +++ b/website/docs/r/media_live_output.html.markdown @@ -103,7 +103,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Live Output. * `read` - (Defaults to 5 minutes) Used when retrieving the Live Output. diff --git a/website/docs/r/media_services_account.html.markdown b/website/docs/r/media_services_account.html.markdown index 2a10e210b338..4ec39d2f60cc 100644 --- a/website/docs/r/media_services_account.html.markdown +++ b/website/docs/r/media_services_account.html.markdown @@ -104,7 +104,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Media Services Account. * `update` - (Defaults to 30 minutes) Used when updating the Media Services Account. diff --git a/website/docs/r/media_streaming_endpoint.html.markdown b/website/docs/r/media_streaming_endpoint.html.markdown index fc73d6747ac5..39200e2b9b5c 100644 --- a/website/docs/r/media_streaming_endpoint.html.markdown +++ b/website/docs/r/media_streaming_endpoint.html.markdown @@ -188,7 +188,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Streaming Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the Streaming Endpoint. diff --git a/website/docs/r/media_streaming_locator.html.markdown b/website/docs/r/media_streaming_locator.html.markdown index 2ddf31d2dcf5..a2257efa477b 100644 --- a/website/docs/r/media_streaming_locator.html.markdown +++ b/website/docs/r/media_streaming_locator.html.markdown @@ -103,7 +103,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Streaming Locator. * `read` - (Defaults to 5 minutes) Used when retrieving the Streaming Locator. diff --git a/website/docs/r/media_streaming_policy.html.markdown b/website/docs/r/media_streaming_policy.html.markdown index 37a2a27b68f9..4cb18dfc90e0 100644 --- a/website/docs/r/media_streaming_policy.html.markdown +++ b/website/docs/r/media_streaming_policy.html.markdown @@ -168,7 +168,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Streaming Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the Streaming Policy. diff --git a/website/docs/r/media_transform.html.markdown b/website/docs/r/media_transform.html.markdown index b0f48448151c..8f411bfed055 100644 --- a/website/docs/r/media_transform.html.markdown +++ b/website/docs/r/media_transform.html.markdown @@ -185,7 +185,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Transform. * `read` - (Defaults to 5 minutes) Used when retrieving the Transform. diff --git a/website/docs/r/monitor_aad_diagnostic_setting.html.markdown b/website/docs/r/monitor_aad_diagnostic_setting.html.markdown index 219acb08b733..1aa6f0dc5ac4 100644 --- a/website/docs/r/monitor_aad_diagnostic_setting.html.markdown +++ b/website/docs/r/monitor_aad_diagnostic_setting.html.markdown @@ -136,7 +136,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the Monitor Azure Active Directory Diagnostic Setting. * `read` - (Defaults to 5 minutes) Used when retrieving the Monitor Azure Active Directory Diagnostic Setting. diff --git a/website/docs/r/monitor_action_group.html.markdown b/website/docs/r/monitor_action_group.html.markdown index 2dc6c1261d07..00a3d59f3884 100644 --- a/website/docs/r/monitor_action_group.html.markdown +++ b/website/docs/r/monitor_action_group.html.markdown @@ -249,7 +249,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Action Group. * `update` - (Defaults to 30 minutes) Used when updating the Action Group. diff --git a/website/docs/r/monitor_action_rule_action_group.html.markdown b/website/docs/r/monitor_action_rule_action_group.html.markdown index 2bd00d4894fd..fed1da5d050e 100644 --- a/website/docs/r/monitor_action_rule_action_group.html.markdown +++ b/website/docs/r/monitor_action_rule_action_group.html.markdown @@ -152,7 +152,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Monitor Action Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Monitor Action Rule. diff --git a/website/docs/r/monitor_action_rule_suppression.html.markdown b/website/docs/r/monitor_action_rule_suppression.html.markdown index de0e0c949400..9918d7daa9d5 100644 --- a/website/docs/r/monitor_action_rule_suppression.html.markdown +++ b/website/docs/r/monitor_action_rule_suppression.html.markdown @@ -175,7 +175,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Monitor Action Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Monitor Action Rule. diff --git a/website/docs/r/monitor_activity_log_alert.html.markdown b/website/docs/r/monitor_activity_log_alert.html.markdown index 72f3c1f4b872..fbbb7f6f8186 100644 --- a/website/docs/r/monitor_activity_log_alert.html.markdown +++ b/website/docs/r/monitor_activity_log_alert.html.markdown @@ -125,7 +125,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Activity Log Alert. * `update` - (Defaults to 30 minutes) Used when updating the Activity Log Alert. diff --git a/website/docs/r/monitor_autoscale_setting.html.markdown b/website/docs/r/monitor_autoscale_setting.html.markdown index c9267a668e60..8b6db017253f 100644 --- a/website/docs/r/monitor_autoscale_setting.html.markdown +++ b/website/docs/r/monitor_autoscale_setting.html.markdown @@ -550,7 +550,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the AutoScale Setting. * `update` - (Defaults to 30 minutes) Used when updating the AutoScale Setting. diff --git a/website/docs/r/monitor_data_collection_rule.html.markdown b/website/docs/r/monitor_data_collection_rule.html.markdown index 4e0874b6dedc..0fc117fc7ca6 100644 --- a/website/docs/r/monitor_data_collection_rule.html.markdown +++ b/website/docs/r/monitor_data_collection_rule.html.markdown @@ -228,7 +228,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Collection Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Data Collection Rule. diff --git a/website/docs/r/monitor_diagnostic_setting.html.markdown b/website/docs/r/monitor_diagnostic_setting.html.markdown index 00a98988dbc6..1a11287a3555 100644 --- a/website/docs/r/monitor_diagnostic_setting.html.markdown +++ b/website/docs/r/monitor_diagnostic_setting.html.markdown @@ -134,7 +134,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Diagnostics Setting. * `update` - (Defaults to 30 minutes) Used when updating the Diagnostics Setting. diff --git a/website/docs/r/monitor_log_profile.html.markdown b/website/docs/r/monitor_log_profile.html.markdown index 1811a90c815c..4d931b51fa4b 100644 --- a/website/docs/r/monitor_log_profile.html.markdown +++ b/website/docs/r/monitor_log_profile.html.markdown @@ -94,7 +94,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Log Profile. * `update` - (Defaults to 30 minutes) Used when updating the Log Profile. diff --git a/website/docs/r/monitor_metric_alert.html.markdown b/website/docs/r/monitor_metric_alert.html.markdown index 31cdacdabe64..4383d3f35c2b 100644 --- a/website/docs/r/monitor_metric_alert.html.markdown +++ b/website/docs/r/monitor_metric_alert.html.markdown @@ -157,7 +157,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Metric Alert. * `update` - (Defaults to 30 minutes) Used when updating the Metric Alert. diff --git a/website/docs/r/monitor_private_link_scope.html.markdown b/website/docs/r/monitor_private_link_scope.html.markdown index 63c5f7eda4aa..e2734e2a25e0 100644 --- a/website/docs/r/monitor_private_link_scope.html.markdown +++ b/website/docs/r/monitor_private_link_scope.html.markdown @@ -42,7 +42,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 hours) Used when creating the Azure Monitor Private Link Scope. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Monitor Private Link Scope. diff --git a/website/docs/r/monitor_private_link_scoped_service.html.markdown b/website/docs/r/monitor_private_link_scoped_service.html.markdown index 01ada2920e78..febbf5aee307 100644 --- a/website/docs/r/monitor_private_link_scoped_service.html.markdown +++ b/website/docs/r/monitor_private_link_scoped_service.html.markdown @@ -58,7 +58,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Monitor Private Link Scope. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Monitor Private Link Scope. diff --git a/website/docs/r/monitor_scheduled_query_rules_alert.html.markdown b/website/docs/r/monitor_scheduled_query_rules_alert.html.markdown index e48c5e0b4c02..3f9f06ce8ea9 100644 --- a/website/docs/r/monitor_scheduled_query_rules_alert.html.markdown +++ b/website/docs/r/monitor_scheduled_query_rules_alert.html.markdown @@ -148,7 +148,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Scheduled Query Rule Alert. * `update` - (Defaults to 30 minutes) Used when updating the Scheduled Query Rule Alert. diff --git a/website/docs/r/monitor_scheduled_query_rules_log.html.markdown b/website/docs/r/monitor_scheduled_query_rules_log.html.markdown index 6ac5bbd33c08..840017e057df 100644 --- a/website/docs/r/monitor_scheduled_query_rules_log.html.markdown +++ b/website/docs/r/monitor_scheduled_query_rules_log.html.markdown @@ -113,7 +113,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Scheduled Query Rule Log. * `update` - (Defaults to 30 minutes) Used when updating the Scheduled Query Rule Log. diff --git a/website/docs/r/monitor_smart_detector_alert_rule.html.markdown b/website/docs/r/monitor_smart_detector_alert_rule.html.markdown index e287ed2b3737..b2108bb7049b 100644 --- a/website/docs/r/monitor_smart_detector_alert_rule.html.markdown +++ b/website/docs/r/monitor_smart_detector_alert_rule.html.markdown @@ -89,7 +89,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Monitor Smart Detector Alert Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Monitor Smart Detector Alert Rule. diff --git a/website/docs/r/mssql_database.html.markdown b/website/docs/r/mssql_database.html.markdown index f35a1d9c301a..343f1dbdf52b 100644 --- a/website/docs/r/mssql_database.html.markdown +++ b/website/docs/r/mssql_database.html.markdown @@ -159,7 +159,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the MS SQL Database. * `update` - (Defaults to 60 minutes) Used when updating the MS SQL Database. diff --git a/website/docs/r/mssql_database_extended_auditing_policy.html.markdown b/website/docs/r/mssql_database_extended_auditing_policy.html.markdown index b4f5aa13aebb..1c2aaab16f1b 100644 --- a/website/docs/r/mssql_database_extended_auditing_policy.html.markdown +++ b/website/docs/r/mssql_database_extended_auditing_policy.html.markdown @@ -87,7 +87,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MS SQL Database Extended Auditing Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the MS SQL Database Extended Auditing Policy. diff --git a/website/docs/r/mssql_database_vulnerability_assessment_rule_baseline.html.markdown b/website/docs/r/mssql_database_vulnerability_assessment_rule_baseline.html.markdown index 880bcacb3daa..20e3231be511 100644 --- a/website/docs/r/mssql_database_vulnerability_assessment_rule_baseline.html.markdown +++ b/website/docs/r/mssql_database_vulnerability_assessment_rule_baseline.html.markdown @@ -115,7 +115,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Database Vulnerability Assessment Rule Baseline. * `update` - (Defaults to 30 minutes) Used when updating the Database Vulnerability Assessment Rule Baseline. diff --git a/website/docs/r/mssql_elasticpool.html.markdown b/website/docs/r/mssql_elasticpool.html.markdown index 52d0a74f550f..59cabb2be56d 100644 --- a/website/docs/r/mssql_elasticpool.html.markdown +++ b/website/docs/r/mssql_elasticpool.html.markdown @@ -107,7 +107,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MS SQL Elastic Pool. * `update` - (Defaults to 30 minutes) Used when updating the MS SQL Elastic Pool. diff --git a/website/docs/r/mssql_failover_group.html.markdown b/website/docs/r/mssql_failover_group.html.markdown index 44314ab463df..77d4d1810def 100644 --- a/website/docs/r/mssql_failover_group.html.markdown +++ b/website/docs/r/mssql_failover_group.html.markdown @@ -121,7 +121,7 @@ A `partner_server` block exports the following: ### Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Failover Group. * `update` - (Defaults to 30 minutes) Used when updating the Failover Group. diff --git a/website/docs/r/mssql_firewall_rule.html.markdown b/website/docs/r/mssql_firewall_rule.html.markdown index 8ce001dc9fc5..d61082f11abb 100644 --- a/website/docs/r/mssql_firewall_rule.html.markdown +++ b/website/docs/r/mssql_firewall_rule.html.markdown @@ -56,7 +56,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the SQL Firewall Rule. diff --git a/website/docs/r/mssql_job_agent.html.markdown b/website/docs/r/mssql_job_agent.html.markdown index 40d5246f6151..a36a3a1f67c3 100644 --- a/website/docs/r/mssql_job_agent.html.markdown +++ b/website/docs/r/mssql_job_agent.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Database. * `read` - (Defaults to 5 minutes) Used when retrieving the Database. diff --git a/website/docs/r/mssql_job_credential.html.markdown b/website/docs/r/mssql_job_credential.html.markdown index 43d724c35d86..cae470d44009 100644 --- a/website/docs/r/mssql_job_credential.html.markdown +++ b/website/docs/r/mssql_job_credential.html.markdown @@ -68,7 +68,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Elastic Job Credential. * `read` - (Defaults to 5 minutes) Used when retrieving the Elastic Job Credential. diff --git a/website/docs/r/mssql_managed_instance.html.markdown b/website/docs/r/mssql_managed_instance.html.markdown index c451b73e187b..44a66e217191 100644 --- a/website/docs/r/mssql_managed_instance.html.markdown +++ b/website/docs/r/mssql_managed_instance.html.markdown @@ -270,7 +270,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 24 hours) Used when creating the Microsoft SQL Managed Instance. * `update` - (Defaults to 24 hours) Used when updating the Microsoft SQL Managed Instance. diff --git a/website/docs/r/mssql_managed_instance_active_directory_administrator.html.markdown b/website/docs/r/mssql_managed_instance_active_directory_administrator.html.markdown index 6eda12dfb04e..4a2e884866bc 100644 --- a/website/docs/r/mssql_managed_instance_active_directory_administrator.html.markdown +++ b/website/docs/r/mssql_managed_instance_active_directory_administrator.html.markdown @@ -100,7 +100,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Active Directory Administrator. * `update` - (Defaults to 30 minutes) Used when updating the SQL Active Directory Administrator. diff --git a/website/docs/r/mssql_managed_instance_failover_group.html.markdown b/website/docs/r/mssql_managed_instance_failover_group.html.markdown index 6e9fa79f2ed1..86e3798ed19d 100644 --- a/website/docs/r/mssql_managed_instance_failover_group.html.markdown +++ b/website/docs/r/mssql_managed_instance_failover_group.html.markdown @@ -157,7 +157,7 @@ A `partner_region` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Managed Instance Failover Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Managed Instance Failover Group. diff --git a/website/docs/r/mssql_managed_instance_vulnerability_assessment.html.markdown b/website/docs/r/mssql_managed_instance_vulnerability_assessment.html.markdown index 2dc0d5da774f..c1d0f021721a 100644 --- a/website/docs/r/mssql_managed_instance_vulnerability_assessment.html.markdown +++ b/website/docs/r/mssql_managed_instance_vulnerability_assessment.html.markdown @@ -112,7 +112,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Vulnerability Assessment. * `update` - (Defaults to 30 minutes) Used when updating the Vulnerability Assessment. diff --git a/website/docs/r/mssql_outbound_firewall_rule.html.markdown b/website/docs/r/mssql_outbound_firewall_rule.html.markdown index 902e88bcd529..f92d6e4f6a58 100644 --- a/website/docs/r/mssql_outbound_firewall_rule.html.markdown +++ b/website/docs/r/mssql_outbound_firewall_rule.html.markdown @@ -50,7 +50,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Outbound Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the SQL Outbound Firewall Rule. diff --git a/website/docs/r/mssql_server.html.markdown b/website/docs/r/mssql_server.html.markdown index 486b84f30d51..015d26098a5f 100644 --- a/website/docs/r/mssql_server.html.markdown +++ b/website/docs/r/mssql_server.html.markdown @@ -121,7 +121,7 @@ The following attributes are exported: ### Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Microsoft SQL Server. * `update` - (Defaults to 60 minutes) Used when updating the Microsoft SQL Server. diff --git a/website/docs/r/mssql_server_dns_alias.html.markdown b/website/docs/r/mssql_server_dns_alias.html.markdown index ad62b70d50a7..3e7cf1699290 100644 --- a/website/docs/r/mssql_server_dns_alias.html.markdown +++ b/website/docs/r/mssql_server_dns_alias.html.markdown @@ -55,7 +55,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the MSSQL Server DNS Alias. * `read` - (Defaults to 5 minutes) Used when retrieving the MSSQL Server DNS Alias. diff --git a/website/docs/r/mssql_server_extended_auditing_policy.html.markdown b/website/docs/r/mssql_server_extended_auditing_policy.html.markdown index 40fc294ca94b..f48e9fae2539 100644 --- a/website/docs/r/mssql_server_extended_auditing_policy.html.markdown +++ b/website/docs/r/mssql_server_extended_auditing_policy.html.markdown @@ -187,7 +187,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MS SQL Server Extended Auditing Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the MS SQL Server Extended Auditing Policy. diff --git a/website/docs/r/mssql_server_security_alert_policy.html.markdown b/website/docs/r/mssql_server_security_alert_policy.html.markdown index 564abec60eb2..d603dc54ffef 100644 --- a/website/docs/r/mssql_server_security_alert_policy.html.markdown +++ b/website/docs/r/mssql_server_security_alert_policy.html.markdown @@ -85,7 +85,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MSSQL Server Security Alert Policy. * `update` - (Defaults to 30 minutes) Used when updating the MSSQL Server Security Alert Policy. diff --git a/website/docs/r/mssql_server_transparent_data_encryption.html.markdown b/website/docs/r/mssql_server_transparent_data_encryption.html.markdown index 07e4195a15e3..2f7bacb17e0f 100644 --- a/website/docs/r/mssql_server_transparent_data_encryption.html.markdown +++ b/website/docs/r/mssql_server_transparent_data_encryption.html.markdown @@ -164,7 +164,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MSSQL. * `read` - (Defaults to 5 minutes) Used when retrieving the MSSQL. diff --git a/website/docs/r/mssql_server_vulnerability_assessment.html.markdown b/website/docs/r/mssql_server_vulnerability_assessment.html.markdown index e0cc0928ac34..ff6557239c73 100644 --- a/website/docs/r/mssql_server_vulnerability_assessment.html.markdown +++ b/website/docs/r/mssql_server_vulnerability_assessment.html.markdown @@ -100,7 +100,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MSSQL Server Vulnerability Assessment. * `update` - (Defaults to 30 minutes) Used when updating the MSSQL Server Vulnerability Assessment. diff --git a/website/docs/r/mssql_virtual_machine.html.markdown b/website/docs/r/mssql_virtual_machine.html.markdown index d4661cdf8744..54dfcd207521 100644 --- a/website/docs/r/mssql_virtual_machine.html.markdown +++ b/website/docs/r/mssql_virtual_machine.html.markdown @@ -146,7 +146,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Microsoft SQL Virtual Machine. * `update` - (Defaults to 60 minutes) Used when updating the Microsoft SQL Virtual Machine. diff --git a/website/docs/r/mssql_virtual_network_rule.html.markdown b/website/docs/r/mssql_virtual_network_rule.html.markdown index ac0f3324aac5..1fdf6da83679 100644 --- a/website/docs/r/mssql_virtual_network_rule.html.markdown +++ b/website/docs/r/mssql_virtual_network_rule.html.markdown @@ -71,7 +71,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Virtual Network Rule. * `update` - (Defaults to 30 minutes) Used when updating the SQL Virtual Network Rule. diff --git a/website/docs/r/mysql_active_directory_administrator.html.markdown b/website/docs/r/mysql_active_directory_administrator.html.markdown index a2876054896f..fad0d34e8bec 100644 --- a/website/docs/r/mysql_active_directory_administrator.html.markdown +++ b/website/docs/r/mysql_active_directory_administrator.html.markdown @@ -65,7 +65,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MySQL Active Directory Administrator. * `update` - (Defaults to 30 minutes) Used when updating the MySQL Active Directory Administrator. diff --git a/website/docs/r/mysql_configuration.html.markdown b/website/docs/r/mysql_configuration.html.markdown index 2d1ac3184f08..79780ca4b04f 100644 --- a/website/docs/r/mysql_configuration.html.markdown +++ b/website/docs/r/mysql_configuration.html.markdown @@ -75,7 +75,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MySQL Configuration. * `update` - (Defaults to 30 minutes) Used when updating the MySQL Configuration. diff --git a/website/docs/r/mysql_database.html.markdown b/website/docs/r/mysql_database.html.markdown index b2dd8c49a104..3d92652682e4 100644 --- a/website/docs/r/mysql_database.html.markdown +++ b/website/docs/r/mysql_database.html.markdown @@ -74,7 +74,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the MySQL Database. * `update` - (Defaults to 60 minutes) Used when updating the MySQL Database. diff --git a/website/docs/r/mysql_firewall_rule.html.markdown b/website/docs/r/mysql_firewall_rule.html.markdown index 2f24754ca52e..88ca88cd757e 100644 --- a/website/docs/r/mysql_firewall_rule.html.markdown +++ b/website/docs/r/mysql_firewall_rule.html.markdown @@ -102,7 +102,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MySQL Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the MySQL Firewall Rule. diff --git a/website/docs/r/mysql_flexible_database.html.markdown b/website/docs/r/mysql_flexible_database.html.markdown index 35f4e023b40c..96e464989bb9 100644 --- a/website/docs/r/mysql_flexible_database.html.markdown +++ b/website/docs/r/mysql_flexible_database.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the MySQL Database. * `update` - (Defaults to 60 minutes) Used when updating the MySQL Database. diff --git a/website/docs/r/mysql_flexible_server.html.markdown b/website/docs/r/mysql_flexible_server.html.markdown index f5411f494b91..611f75300388 100644 --- a/website/docs/r/mysql_flexible_server.html.markdown +++ b/website/docs/r/mysql_flexible_server.html.markdown @@ -173,7 +173,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the MySQL Flexible Server. * `read` - (Defaults to 5 minutes) Used when retrieving the MySQL Flexible Server. diff --git a/website/docs/r/mysql_flexible_server_configuration.html.markdown b/website/docs/r/mysql_flexible_server_configuration.html.markdown index f217f313e7c4..7eb0830a5adf 100644 --- a/website/docs/r/mysql_flexible_server_configuration.html.markdown +++ b/website/docs/r/mysql_flexible_server_configuration.html.markdown @@ -63,7 +63,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MySQL Flexible Server Configuration. * `update` - (Defaults to 30 minutes) Used when updating the MySQL Flexible Server Configuration. diff --git a/website/docs/r/mysql_flexible_server_firewall_rule.html.markdown b/website/docs/r/mysql_flexible_server_firewall_rule.html.markdown index 2eef273f11d7..cbd7de829206 100644 --- a/website/docs/r/mysql_flexible_server_firewall_rule.html.markdown +++ b/website/docs/r/mysql_flexible_server_firewall_rule.html.markdown @@ -103,7 +103,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MySQL Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the MySQL Firewall Rule. diff --git a/website/docs/r/mysql_server.html.markdown b/website/docs/r/mysql_server.html.markdown index ec4ec98c09ce..25f31897903d 100644 --- a/website/docs/r/mysql_server.html.markdown +++ b/website/docs/r/mysql_server.html.markdown @@ -130,7 +130,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the MySQL Server. * `update` - (Defaults to 60 minutes) Used when updating the MySQL Server. diff --git a/website/docs/r/mysql_server_key.html.markdown b/website/docs/r/mysql_server_key.html.markdown index 622fd918b8cc..4979698937fd 100644 --- a/website/docs/r/mysql_server_key.html.markdown +++ b/website/docs/r/mysql_server_key.html.markdown @@ -98,7 +98,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MySQL Server Key. * `update` - (Defaults to 30 minutes) Used when updating the MySQL Server Key. diff --git a/website/docs/r/mysql_virtual_network_rule.html.markdown b/website/docs/r/mysql_virtual_network_rule.html.markdown index 756d56aa47f9..da88a5828673 100644 --- a/website/docs/r/mysql_virtual_network_rule.html.markdown +++ b/website/docs/r/mysql_virtual_network_rule.html.markdown @@ -91,7 +91,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the MySQL Virtual Network Rule. * `update` - (Defaults to 30 minutes) Used when updating the MySQL Virtual Network Rule. diff --git a/website/docs/r/nat_gateway.html.markdown b/website/docs/r/nat_gateway.html.markdown index 51503095a36a..f928c69701d2 100644 --- a/website/docs/r/nat_gateway.html.markdown +++ b/website/docs/r/nat_gateway.html.markdown @@ -76,7 +76,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the NAT Gateway. * `update` - (Defaults to 60 minutes) Used when updating the NAT Gateway. diff --git a/website/docs/r/nat_gateway_public_ip_association.html.markdown b/website/docs/r/nat_gateway_public_ip_association.html.markdown index f25630407eb3..395df8bf262b 100644 --- a/website/docs/r/nat_gateway_public_ip_association.html.markdown +++ b/website/docs/r/nat_gateway_public_ip_association.html.markdown @@ -56,7 +56,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the association between the NAT Gateway and the Public IP. * `read` - (Defaults to 5 minutes) Used when retrieving the association between the NAT Gateway and the Public IP. diff --git a/website/docs/r/nat_gateway_public_ip_prefix_association.html.markdown b/website/docs/r/nat_gateway_public_ip_prefix_association.html.markdown index 658844cd8b75..de42f67049e5 100644 --- a/website/docs/r/nat_gateway_public_ip_prefix_association.html.markdown +++ b/website/docs/r/nat_gateway_public_ip_prefix_association.html.markdown @@ -56,7 +56,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the association between the NAT Gateway and the Public IP Prefix. * `read` - (Defaults to 5 minutes) Used when retrieving the association between the NAT Gateway and the Public IP Prefix. diff --git a/website/docs/r/netapp_account.html.markdown b/website/docs/r/netapp_account.html.markdown index 2ef0c616974f..9c006ef6383b 100644 --- a/website/docs/r/netapp_account.html.markdown +++ b/website/docs/r/netapp_account.html.markdown @@ -76,7 +76,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the NetApp Account. * `update` - (Defaults to 30 minutes) Used when updating the NetApp Account. diff --git a/website/docs/r/netapp_pool.html.markdown b/website/docs/r/netapp_pool.html.markdown index 03a4b6f5a804..4b1d5d301e06 100644 --- a/website/docs/r/netapp_pool.html.markdown +++ b/website/docs/r/netapp_pool.html.markdown @@ -64,7 +64,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the NetApp Pool. * `update` - (Defaults to 30 minutes) Used when updating the NetApp Pool. diff --git a/website/docs/r/netapp_snapshot.html.markdown b/website/docs/r/netapp_snapshot.html.markdown index 11eea30e6a45..2114aa218d42 100644 --- a/website/docs/r/netapp_snapshot.html.markdown +++ b/website/docs/r/netapp_snapshot.html.markdown @@ -104,7 +104,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the NetApp Snapshot. * `update` - (Defaults to 30 minutes) Used when updating the NetApp Snapshot. diff --git a/website/docs/r/netapp_snapshot_policy.html.markdown b/website/docs/r/netapp_snapshot_policy.html.markdown index 181fa37cff0b..3fef4abee74b 100644 --- a/website/docs/r/netapp_snapshot_policy.html.markdown +++ b/website/docs/r/netapp_snapshot_policy.html.markdown @@ -150,7 +150,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the NetApp Snapshot Policy. * `update` - (Defaults to 30 minutes) Used when updating the NetApp Snapshot Policy. diff --git a/website/docs/r/netapp_volume.html.markdown b/website/docs/r/netapp_volume.html.markdown index 6ec922962052..a7d127175bb3 100644 --- a/website/docs/r/netapp_volume.html.markdown +++ b/website/docs/r/netapp_volume.html.markdown @@ -193,7 +193,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the NetApp Volume. * `update` - (Defaults to 30 minutes) Used when updating the NetApp Volume. diff --git a/website/docs/r/network_connection_monitor.html.markdown b/website/docs/r/network_connection_monitor.html.markdown index 3a6c668a41e7..8b7084d00b4f 100644 --- a/website/docs/r/network_connection_monitor.html.markdown +++ b/website/docs/r/network_connection_monitor.html.markdown @@ -299,7 +299,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network Connection Monitor. * `read` - (Defaults to 5 minutes) Used when retrieving the Network Connection Monitor. diff --git a/website/docs/r/network_ddos_protection_plan.html.markdown b/website/docs/r/network_ddos_protection_plan.html.markdown index afe56e03ed55..678ba62cb8a8 100644 --- a/website/docs/r/network_ddos_protection_plan.html.markdown +++ b/website/docs/r/network_ddos_protection_plan.html.markdown @@ -52,7 +52,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the DDoS Protection Plan. * `update` - (Defaults to 30 minutes) Used when updating the DDoS Protection Plan. diff --git a/website/docs/r/network_interface.html.markdown b/website/docs/r/network_interface.html.markdown index a31126666e1c..59356304cbaf 100644 --- a/website/docs/r/network_interface.html.markdown +++ b/website/docs/r/network_interface.html.markdown @@ -132,7 +132,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network Interface. * `update` - (Defaults to 30 minutes) Used when updating the Network Interface. diff --git a/website/docs/r/network_interface_application_gateway_backend_address_pool_association.html.markdown b/website/docs/r/network_interface_application_gateway_backend_address_pool_association.html.markdown index 6b7defd475ea..f6083fb50b34 100644 --- a/website/docs/r/network_interface_application_gateway_backend_address_pool_association.html.markdown +++ b/website/docs/r/network_interface_application_gateway_backend_address_pool_association.html.markdown @@ -148,7 +148,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the association between the Network Interface and the Application Gateway Backend Address Pool. * `update` - (Defaults to 30 minutes) Used when updating the association between the Network Interface and the Application Gateway Backend Address Pool. diff --git a/website/docs/r/network_interface_application_security_group_association.html.markdown b/website/docs/r/network_interface_application_security_group_association.html.markdown index 286f4e2500a2..95f8f14a3540 100644 --- a/website/docs/r/network_interface_application_security_group_association.html.markdown +++ b/website/docs/r/network_interface_application_security_group_association.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the association between the Network Interface and the Application Security Group. * `update` - (Defaults to 30 minutes) Used when updating the association between the Network Interface and the Application Security Group. diff --git a/website/docs/r/network_interface_backend_address_pool_association.html.markdown b/website/docs/r/network_interface_backend_address_pool_association.html.markdown index 2a9ab81bac2b..c3e2baea05a2 100644 --- a/website/docs/r/network_interface_backend_address_pool_association.html.markdown +++ b/website/docs/r/network_interface_backend_address_pool_association.html.markdown @@ -93,7 +93,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the association between the Network Interface and the Load Balancers Backend Address Pool. * `update` - (Defaults to 30 minutes) Used when updating the association between the Network Interface and the Load Balancers Backend Address Pool. diff --git a/website/docs/r/network_interface_nat_rule_association.html.markdown b/website/docs/r/network_interface_nat_rule_association.html.markdown index 3bf5525685ee..a67eaf363349 100644 --- a/website/docs/r/network_interface_nat_rule_association.html.markdown +++ b/website/docs/r/network_interface_nat_rule_association.html.markdown @@ -98,7 +98,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the association between the Network Interface and the Load Balancers NAT Rule. * `update` - (Defaults to 30 minutes) Used when updating the association between the Network Interface and the Load Balancers NAT Rule. diff --git a/website/docs/r/network_interface_security_group_association.html.markdown b/website/docs/r/network_interface_security_group_association.html.markdown index 07fe7dedf3d7..1fc5c30c9bb8 100644 --- a/website/docs/r/network_interface_security_group_association.html.markdown +++ b/website/docs/r/network_interface_security_group_association.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the association between the Network Interface and the Network Security Group. * `update` - (Defaults to 30 minutes) Used when updating the association between the Network Interface and the Network Security Group. diff --git a/website/docs/r/network_packet_capture.html.markdown b/website/docs/r/network_packet_capture.html.markdown index afde1dfdab98..17373c0453a9 100644 --- a/website/docs/r/network_packet_capture.html.markdown +++ b/website/docs/r/network_packet_capture.html.markdown @@ -178,7 +178,7 @@ A `storage_location` block contains: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Packet Capture. * `update` - (Defaults to 30 minutes) Used when updating the Packet Capture. diff --git a/website/docs/r/network_profile.html.markdown b/website/docs/r/network_profile.html.markdown index 44eb9b61bac1..19825e19e886 100644 --- a/website/docs/r/network_profile.html.markdown +++ b/website/docs/r/network_profile.html.markdown @@ -98,7 +98,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network Profile. * `update` - (Defaults to 30 minutes) Used when updating the Network Profile. diff --git a/website/docs/r/network_security_group.html.markdown b/website/docs/r/network_security_group.html.markdown index add335ad79d6..5a7fdd0d6646 100644 --- a/website/docs/r/network_security_group.html.markdown +++ b/website/docs/r/network_security_group.html.markdown @@ -106,7 +106,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network Security Group. * `update` - (Defaults to 30 minutes) Used when updating the Network Security Group. diff --git a/website/docs/r/network_security_rule.html.markdown b/website/docs/r/network_security_rule.html.markdown index 90e9b2ab76e6..ba4b25ed09cc 100644 --- a/website/docs/r/network_security_rule.html.markdown +++ b/website/docs/r/network_security_rule.html.markdown @@ -92,7 +92,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network Security Rule. * `update` - (Defaults to 30 minutes) Used when updating the Network Security Rule. diff --git a/website/docs/r/network_watcher.html.markdown b/website/docs/r/network_watcher.html.markdown index 9b75ab4e9d23..730171a5d626 100644 --- a/website/docs/r/network_watcher.html.markdown +++ b/website/docs/r/network_watcher.html.markdown @@ -46,7 +46,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network Watcher. * `update` - (Defaults to 30 minutes) Used when updating the Network Watcher. diff --git a/website/docs/r/network_watcher_flow_log.html.markdown b/website/docs/r/network_watcher_flow_log.html.markdown index 6abc61d3e11c..564204eb065e 100644 --- a/website/docs/r/network_watcher_flow_log.html.markdown +++ b/website/docs/r/network_watcher_flow_log.html.markdown @@ -124,7 +124,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network Watcher Flow Log. * `update` - (Defaults to 30 minutes) Used when updating the Network Watcher Flow Log. diff --git a/website/docs/r/notification_hub.html.markdown b/website/docs/r/notification_hub.html.markdown index 67cfb5589237..40a6b340f24f 100644 --- a/website/docs/r/notification_hub.html.markdown +++ b/website/docs/r/notification_hub.html.markdown @@ -86,7 +86,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Notification Hub. * `update` - (Defaults to 30 minutes) Used when updating the Notification Hub. diff --git a/website/docs/r/notification_hub_authorization_rule.html.markdown b/website/docs/r/notification_hub_authorization_rule.html.markdown index 357c2e9343aa..dda462edc7f8 100644 --- a/website/docs/r/notification_hub_authorization_rule.html.markdown +++ b/website/docs/r/notification_hub_authorization_rule.html.markdown @@ -77,7 +77,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Notification Hub Authorization Rule. * `update` - (Defaults to 30 minutes) Used when updating the Notification Hub Authorization Rule. diff --git a/website/docs/r/notification_hub_namespace.html.markdown b/website/docs/r/notification_hub_namespace.html.markdown index 9f16accf70de..39fefefba35f 100644 --- a/website/docs/r/notification_hub_namespace.html.markdown +++ b/website/docs/r/notification_hub_namespace.html.markdown @@ -56,7 +56,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Notification Hub Namespace. * `update` - (Defaults to 30 minutes) Used when updating the Notification Hub Namespace. diff --git a/website/docs/r/orchestrated_virtual_machine_scale_set.html.markdown b/website/docs/r/orchestrated_virtual_machine_scale_set.html.markdown index 7968ee085db6..b6356e4d8428 100644 --- a/website/docs/r/orchestrated_virtual_machine_scale_set.html.markdown +++ b/website/docs/r/orchestrated_virtual_machine_scale_set.html.markdown @@ -401,7 +401,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Orchestrated Virtual Machine Scale Set. * `update` - (Defaults to 30 minutes) Used when updating the Orchestrated Virtual Machine Scale Set. diff --git a/website/docs/r/point_to_site_vpn_gateway.html.markdown b/website/docs/r/point_to_site_vpn_gateway.html.markdown index f4164efff18b..e6ddab755d1f 100644 --- a/website/docs/r/point_to_site_vpn_gateway.html.markdown +++ b/website/docs/r/point_to_site_vpn_gateway.html.markdown @@ -149,7 +149,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the Point-to-Site VPN Gateway. * `update` - (Defaults to 90 minutes) Used when updating the Point-to-Site VPN Gateway. diff --git a/website/docs/r/policy_definition.html.markdown b/website/docs/r/policy_definition.html.markdown index b339f919ee77..71b993c7f242 100644 --- a/website/docs/r/policy_definition.html.markdown +++ b/website/docs/r/policy_definition.html.markdown @@ -97,7 +97,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Definition. * `update` - (Defaults to 30 minutes) Used when updating the Policy Definition. diff --git a/website/docs/r/policy_set_definition.html.markdown b/website/docs/r/policy_set_definition.html.markdown index 3c4f2a8eefba..00ea947f492d 100644 --- a/website/docs/r/policy_set_definition.html.markdown +++ b/website/docs/r/policy_set_definition.html.markdown @@ -100,7 +100,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Set Definition. * `update` - (Defaults to 30 minutes) Used when updating the Policy Set Definition. diff --git a/website/docs/r/policy_virtual_machine_configuration_assignment.html.markdown b/website/docs/r/policy_virtual_machine_configuration_assignment.html.markdown index d490c1fa59ef..1a10ffa0303b 100644 --- a/website/docs/r/policy_virtual_machine_configuration_assignment.html.markdown +++ b/website/docs/r/policy_virtual_machine_configuration_assignment.html.markdown @@ -161,7 +161,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Virtual Machine Configuration Assignment. * `update` - (Defaults to 30 minutes) Used when updating the Policy Virtual Machine Configuration Assignment. diff --git a/website/docs/r/portal_dashboard.html.markdown b/website/docs/r/portal_dashboard.html.markdown index e8a040a11781..651da3d804f9 100644 --- a/website/docs/r/portal_dashboard.html.markdown +++ b/website/docs/r/portal_dashboard.html.markdown @@ -261,7 +261,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Dashboard. * `update` - (Defaults to 30 minutes) Used when updating the Dashboard. diff --git a/website/docs/r/portal_tenant_configuration.html.markdown b/website/docs/r/portal_tenant_configuration.html.markdown index d8a250a0a70b..3cb43091af1d 100644 --- a/website/docs/r/portal_tenant_configuration.html.markdown +++ b/website/docs/r/portal_tenant_configuration.html.markdown @@ -42,7 +42,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Portal Tenant Configuration. * `read` - (Defaults to 5 minutes) Used when retrieving the Portal Tenant Configuration. diff --git a/website/docs/r/postgresql_active_directory_administrator.html.markdown b/website/docs/r/postgresql_active_directory_administrator.html.markdown index 1434f4d557b6..fb3094adae8f 100644 --- a/website/docs/r/postgresql_active_directory_administrator.html.markdown +++ b/website/docs/r/postgresql_active_directory_administrator.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PostgreSQL Active Directory Administrator. * `update` - (Defaults to 30 minutes) Used when updating the PostgreSQL Active Directory Administrator. diff --git a/website/docs/r/postgresql_configuration.html.markdown b/website/docs/r/postgresql_configuration.html.markdown index a26dd6a0d918..9a446672cff3 100644 --- a/website/docs/r/postgresql_configuration.html.markdown +++ b/website/docs/r/postgresql_configuration.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PostgreSQL Configuration. * `update` - (Defaults to 30 minutes) Used when updating the PostgreSQL Configuration. diff --git a/website/docs/r/postgresql_database.html.markdown b/website/docs/r/postgresql_database.html.markdown index 28c0c07dc983..32b29f2230a8 100644 --- a/website/docs/r/postgresql_database.html.markdown +++ b/website/docs/r/postgresql_database.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the PostgreSQL Database. * `update` - (Defaults to 60 minutes) Used when updating the PostgreSQL Database. diff --git a/website/docs/r/postgresql_firewall_rule.html.markdown b/website/docs/r/postgresql_firewall_rule.html.markdown index 1f5a119f2e60..4fb29ac41ae4 100644 --- a/website/docs/r/postgresql_firewall_rule.html.markdown +++ b/website/docs/r/postgresql_firewall_rule.html.markdown @@ -83,7 +83,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PostgreSQL Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the PostgreSQL Firewall Rule. diff --git a/website/docs/r/postgresql_flexible_server.html.markdown b/website/docs/r/postgresql_flexible_server.html.markdown index ef89cb87fba2..f0c48094bd09 100644 --- a/website/docs/r/postgresql_flexible_server.html.markdown +++ b/website/docs/r/postgresql_flexible_server.html.markdown @@ -160,7 +160,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the PostgreSQL Flexible Server. * `read` - (Defaults to 5 minutes) Used when retrieving the PostgreSQL Flexible Server. diff --git a/website/docs/r/postgresql_flexible_server_configuration.html.markdown b/website/docs/r/postgresql_flexible_server_configuration.html.markdown index e4ddde68601b..e30e1dc8ef64 100644 --- a/website/docs/r/postgresql_flexible_server_configuration.html.markdown +++ b/website/docs/r/postgresql_flexible_server_configuration.html.markdown @@ -94,7 +94,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PostgreSQL Configuration. * `update` - (Defaults to 30 minutes) Used when updating the PostgreSQL Configuration. diff --git a/website/docs/r/postgresql_flexible_server_database.html.markdown b/website/docs/r/postgresql_flexible_server_database.html.markdown index ff1932d2f3c3..2231336bf08c 100644 --- a/website/docs/r/postgresql_flexible_server_database.html.markdown +++ b/website/docs/r/postgresql_flexible_server_database.html.markdown @@ -57,7 +57,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure PostgreSQL Flexible Server Database. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure PostgreSQL Flexible Server Database. diff --git a/website/docs/r/postgresql_flexible_server_firewall_rule.html.markdown b/website/docs/r/postgresql_flexible_server_firewall_rule.html.markdown index 6a81567e0876..29603e7c1ea8 100644 --- a/website/docs/r/postgresql_flexible_server_firewall_rule.html.markdown +++ b/website/docs/r/postgresql_flexible_server_firewall_rule.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PostgreSQL Flexible Server Firewall Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the PostgreSQL Flexible Server Firewall Rule. diff --git a/website/docs/r/postgresql_server.html.markdown b/website/docs/r/postgresql_server.html.markdown index 66515aeb75e6..d3a84caf46f8 100644 --- a/website/docs/r/postgresql_server.html.markdown +++ b/website/docs/r/postgresql_server.html.markdown @@ -139,7 +139,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the PostgreSQL Server. * `update` - (Defaults to 60 minutes) Used when updating the PostgreSQL Server. diff --git a/website/docs/r/postgresql_server_key.html.markdown b/website/docs/r/postgresql_server_key.html.markdown index 796f06b9854d..3d903d8f089c 100644 --- a/website/docs/r/postgresql_server_key.html.markdown +++ b/website/docs/r/postgresql_server_key.html.markdown @@ -104,7 +104,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PostgreSQL Server Key. * `update` - (Defaults to 30 minutes) Used when updating the PostgreSQL Server Key. diff --git a/website/docs/r/postgresql_virtual_network_rule.html.markdown b/website/docs/r/postgresql_virtual_network_rule.html.markdown index a8dd186b27c0..01b32026e1e2 100644 --- a/website/docs/r/postgresql_virtual_network_rule.html.markdown +++ b/website/docs/r/postgresql_virtual_network_rule.html.markdown @@ -88,7 +88,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PostgreSQL Virtual Network Rule. * `update` - (Defaults to 30 minutes) Used when updating the PostgreSQL Virtual Network Rule. diff --git a/website/docs/r/powerbi_embedded.html.markdown b/website/docs/r/powerbi_embedded.html.markdown index e5e9783c4484..1f4185255c11 100644 --- a/website/docs/r/powerbi_embedded.html.markdown +++ b/website/docs/r/powerbi_embedded.html.markdown @@ -53,7 +53,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the PowerBI Embedded instance. * `update` - (Defaults to 30 minutes) Used when updating the PowerBI Embedded instance. diff --git a/website/docs/r/private_dns_a_record.html.markdown b/website/docs/r/private_dns_a_record.html.markdown index bb1b560f6a64..061ad2561d14 100644 --- a/website/docs/r/private_dns_a_record.html.markdown +++ b/website/docs/r/private_dns_a_record.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS A Record. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS A Record. diff --git a/website/docs/r/private_dns_aaaa_record.html.markdown b/website/docs/r/private_dns_aaaa_record.html.markdown index 9b9ba70c2667..c9eb110e900f 100644 --- a/website/docs/r/private_dns_aaaa_record.html.markdown +++ b/website/docs/r/private_dns_aaaa_record.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS AAAA Record. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS AAAA Record. diff --git a/website/docs/r/private_dns_cname_record.html.markdown b/website/docs/r/private_dns_cname_record.html.markdown index 943e5364df57..64e0e493b023 100644 --- a/website/docs/r/private_dns_cname_record.html.markdown +++ b/website/docs/r/private_dns_cname_record.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS CNAME Record. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS CNAME Record. diff --git a/website/docs/r/private_dns_mx_record.html.markdown b/website/docs/r/private_dns_mx_record.html.markdown index 8e793a3327a2..46985474beb1 100644 --- a/website/docs/r/private_dns_mx_record.html.markdown +++ b/website/docs/r/private_dns_mx_record.html.markdown @@ -79,7 +79,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS MX Record. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS MX Record. diff --git a/website/docs/r/private_dns_ptr_record.html.markdown b/website/docs/r/private_dns_ptr_record.html.markdown index 28ab4a9ae9e0..faf3d048731c 100644 --- a/website/docs/r/private_dns_ptr_record.html.markdown +++ b/website/docs/r/private_dns_ptr_record.html.markdown @@ -58,7 +58,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS PTR Record. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS PTR Record. diff --git a/website/docs/r/private_dns_srv_record.html.markdown b/website/docs/r/private_dns_srv_record.html.markdown index e2df02d3eae2..d9ba42d61eee 100644 --- a/website/docs/r/private_dns_srv_record.html.markdown +++ b/website/docs/r/private_dns_srv_record.html.markdown @@ -87,7 +87,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS SRV Record. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS SRV Record. diff --git a/website/docs/r/private_dns_txt_record.html.markdown b/website/docs/r/private_dns_txt_record.html.markdown index ed77421841e7..286abcda9884 100644 --- a/website/docs/r/private_dns_txt_record.html.markdown +++ b/website/docs/r/private_dns_txt_record.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS TXT Record. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS TXT Record. diff --git a/website/docs/r/private_dns_zone.html.markdown b/website/docs/r/private_dns_zone.html.markdown index aa49b7b78cb5..3c63d5d505e8 100644 --- a/website/docs/r/private_dns_zone.html.markdown +++ b/website/docs/r/private_dns_zone.html.markdown @@ -78,7 +78,7 @@ A `soa_record` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS Zone. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS Zone. diff --git a/website/docs/r/private_dns_zone_virtual_network_link.html.markdown b/website/docs/r/private_dns_zone_virtual_network_link.html.markdown index 6b48cd572034..aab224a64aa3 100644 --- a/website/docs/r/private_dns_zone_virtual_network_link.html.markdown +++ b/website/docs/r/private_dns_zone_virtual_network_link.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Private DNS Zone Virtual Network Link. * `update` - (Defaults to 30 minutes) Used when updating the Private DNS Zone Virtual Network Link. diff --git a/website/docs/r/private_endpoint.html.markdown b/website/docs/r/private_endpoint.html.markdown index b82a030a28ea..484ad1f78524 100644 --- a/website/docs/r/private_endpoint.html.markdown +++ b/website/docs/r/private_endpoint.html.markdown @@ -266,7 +266,7 @@ A `record_sets` block exports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Private Endpoint. * `update` - (Defaults to 60 minutes) Used when updating the Private Endpoint. diff --git a/website/docs/r/private_link_service.html.markdown b/website/docs/r/private_link_service.html.markdown index 7cc3b8829972..d75d9b7bb723 100644 --- a/website/docs/r/private_link_service.html.markdown +++ b/website/docs/r/private_link_service.html.markdown @@ -134,7 +134,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Private Link Service. * `update` - (Defaults to 60 minutes) Used when updating the Private Link Service. diff --git a/website/docs/r/proximity_placement_group.html.markdown b/website/docs/r/proximity_placement_group.html.markdown index 19727ab576d4..1ea24bba6a2b 100644 --- a/website/docs/r/proximity_placement_group.html.markdown +++ b/website/docs/r/proximity_placement_group.html.markdown @@ -50,7 +50,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Proximity Placement Group. * `update` - (Defaults to 30 minutes) Used when updating the Proximity Placement Group. diff --git a/website/docs/r/public_ip.html.markdown b/website/docs/r/public_ip.html.markdown index 87e0382e5f1f..62a0dfd4d8cc 100644 --- a/website/docs/r/public_ip.html.markdown +++ b/website/docs/r/public_ip.html.markdown @@ -92,7 +92,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Public IP. * `update` - (Defaults to 30 minutes) Used when updating the Public IP. diff --git a/website/docs/r/public_ip_prefix.html.markdown b/website/docs/r/public_ip_prefix.html.markdown index 3568995eb811..86a67ba54368 100644 --- a/website/docs/r/public_ip_prefix.html.markdown +++ b/website/docs/r/public_ip_prefix.html.markdown @@ -66,7 +66,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Public IP Prefix. * `update` - (Defaults to 30 minutes) Used when updating the Public IP Prefix. diff --git a/website/docs/r/purview_account.html.markdown b/website/docs/r/purview_account.html.markdown index e17742fd082f..1028c6905098 100644 --- a/website/docs/r/purview_account.html.markdown +++ b/website/docs/r/purview_account.html.markdown @@ -97,7 +97,7 @@ A `managed_resources` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Purview Account. * `read` - (Defaults to 5 minutes) Used when retrieving the Purview Account. diff --git a/website/docs/r/recovery_services_vault.html.markdown b/website/docs/r/recovery_services_vault.html.markdown index 045dbff858f2..2f9159e66333 100644 --- a/website/docs/r/recovery_services_vault.html.markdown +++ b/website/docs/r/recovery_services_vault.html.markdown @@ -92,7 +92,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Recovery Services Vault. * `update` - (Defaults to 30 minutes) Used when updating the Recovery Services Vault. diff --git a/website/docs/r/redis_cache.html.markdown b/website/docs/r/redis_cache.html.markdown index 24954decec16..c06e3bd4dbd8 100644 --- a/website/docs/r/redis_cache.html.markdown +++ b/website/docs/r/redis_cache.html.markdown @@ -137,7 +137,7 @@ redis_configuration { * `rdb_backup_max_snapshot_count` - (Optional) The maximum number of snapshots to create as a backup. Only supported for Premium SKUs. * `rdb_storage_connection_string` - (Optional) The Connection String to the Storage Account. Only supported for Premium SKUs. In the format: `DefaultEndpointsProtocol=https;BlobEndpoint=${azurerm_storage_account.example.primary_blob_endpoint};AccountName=${azurerm_storage_account.example.name};AccountKey=${azurerm_storage_account.example.primary_access_key}`. -~> **NOTE:** There's a bug in the Redis API where the original storage connection string isn't being returned, which [is being tracked in this issue](https://github.com/Azure/azure-rest-api-specs/issues/3037). In the interim you can use [the `ignore_changes` attribute to ignore changes to this field](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) e.g.: +~> **NOTE:** There's a bug in the Redis API where the original storage connection string isn't being returned, which [is being tracked in this issue](https://github.com/Azure/azure-rest-api-specs/issues/3037). In the interim you can use [the `ignore_changes` attribute to ignore changes to this field](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) e.g.: ``` resource "azurerm_redis_cache" "example" { @@ -214,7 +214,7 @@ A `redis_configuration` block exports the following: ## Timeouts - The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: + The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the Redis Cache. * `update` - (Defaults to 90 minutes) Used when updating the Redis Cache. diff --git a/website/docs/r/redis_enterprise_cluster.html.markdown b/website/docs/r/redis_enterprise_cluster.html.markdown index 3e40e3def670..b058247fd1d3 100644 --- a/website/docs/r/redis_enterprise_cluster.html.markdown +++ b/website/docs/r/redis_enterprise_cluster.html.markdown @@ -59,7 +59,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Redis Enterprise Cluster. * `read` - (Defaults to 5 minutes) Used when retrieving the Redis Enterprise Cluster. diff --git a/website/docs/r/redis_enterprise_database.html.markdown b/website/docs/r/redis_enterprise_database.html.markdown index cb7ddfb388bd..f2588d5beee9 100644 --- a/website/docs/r/redis_enterprise_database.html.markdown +++ b/website/docs/r/redis_enterprise_database.html.markdown @@ -103,7 +103,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Redis Enterprise Database. * `read` - (Defaults to 5 minutes) Used when retrieving the Redis Enterprise Database. diff --git a/website/docs/r/redis_firewall_rule.html.markdown b/website/docs/r/redis_firewall_rule.html.markdown index 9f4eddc18889..3f55d96d278f 100644 --- a/website/docs/r/redis_firewall_rule.html.markdown +++ b/website/docs/r/redis_firewall_rule.html.markdown @@ -75,7 +75,7 @@ The following attributes are exported: ## Timeouts - The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: + The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Redis Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the Redis Firewall Rule. diff --git a/website/docs/r/redis_linked_server.html.markdown b/website/docs/r/redis_linked_server.html.markdown index f5914599d889..06f5e46d3642 100644 --- a/website/docs/r/redis_linked_server.html.markdown +++ b/website/docs/r/redis_linked_server.html.markdown @@ -88,7 +88,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Redis. * `read` - (Defaults to 5 minutes) Used when retrieving the Redis. diff --git a/website/docs/r/relay_hybrid_connection.html.markdown b/website/docs/r/relay_hybrid_connection.html.markdown index bc40f15ea645..2a65971f6938 100644 --- a/website/docs/r/relay_hybrid_connection.html.markdown +++ b/website/docs/r/relay_hybrid_connection.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Relay Hybrid Connection. * `update` - (Defaults to 30 minutes) Used when updating the Relay Hybrid Connection. diff --git a/website/docs/r/relay_hybrid_connection_authorization_rule.html.markdown b/website/docs/r/relay_hybrid_connection_authorization_rule.html.markdown index 4d41a0828bd4..4e39510ca9cb 100644 --- a/website/docs/r/relay_hybrid_connection_authorization_rule.html.markdown +++ b/website/docs/r/relay_hybrid_connection_authorization_rule.html.markdown @@ -87,7 +87,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Relay Hybrid Connection Authorization Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Relay Hybrid Connection Authorization Rule. diff --git a/website/docs/r/relay_namespace.html.markdown b/website/docs/r/relay_namespace.html.markdown index 207eb03492ec..1e619b3b3db8 100644 --- a/website/docs/r/relay_namespace.html.markdown +++ b/website/docs/r/relay_namespace.html.markdown @@ -66,7 +66,7 @@ The following attributes are exported only if there is an authorization rule nam ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Relay Namespace. * `update` - (Defaults to 30 minutes) Used when updating the Relay Namespace. diff --git a/website/docs/r/relay_namespace_authorization_rule.html.markdown b/website/docs/r/relay_namespace_authorization_rule.html.markdown index 14e6ce98d8b7..c9cd3abb7256 100644 --- a/website/docs/r/relay_namespace_authorization_rule.html.markdown +++ b/website/docs/r/relay_namespace_authorization_rule.html.markdown @@ -75,7 +75,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Relay Namespace Authorization Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Relay Namespace Authorization Rule. diff --git a/website/docs/r/resource_group.html.markdown b/website/docs/r/resource_group.html.markdown index a57905bd01e4..db14f9fa5bfb 100644 --- a/website/docs/r/resource_group.html.markdown +++ b/website/docs/r/resource_group.html.markdown @@ -43,7 +43,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour and 30 minutes) Used when creating the Resource Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group. diff --git a/website/docs/r/resource_group_cost_management_export.html.markdown b/website/docs/r/resource_group_cost_management_export.html.markdown index 4a0fdd06e1da..52fb2cc6e1e7 100644 --- a/website/docs/r/resource_group_cost_management_export.html.markdown +++ b/website/docs/r/resource_group_cost_management_export.html.markdown @@ -97,7 +97,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Resource Group Cost Management Export. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group Cost Management Export. diff --git a/website/docs/r/resource_group_policy_assignment.html.markdown b/website/docs/r/resource_group_policy_assignment.html.markdown index ddb4a323d4e4..9438021c06ac 100644 --- a/website/docs/r/resource_group_policy_assignment.html.markdown +++ b/website/docs/r/resource_group_policy_assignment.html.markdown @@ -123,7 +123,7 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Assignment for this Resource Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Policy Assignment for this Resource Group. diff --git a/website/docs/r/resource_group_policy_exemption.html.markdown b/website/docs/r/resource_group_policy_exemption.html.markdown index d4462b4d5002..dd8a44a1b1b2 100644 --- a/website/docs/r/resource_group_policy_exemption.html.markdown +++ b/website/docs/r/resource_group_policy_exemption.html.markdown @@ -71,7 +71,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Exemption. * `update` - (Defaults to 30 minutes) Used when updating the Policy Exemption. diff --git a/website/docs/r/resource_group_policy_remediation.html.markdown b/website/docs/r/resource_group_policy_remediation.html.markdown index 6c195e198162..567fec4e119a 100644 --- a/website/docs/r/resource_group_policy_remediation.html.markdown +++ b/website/docs/r/resource_group_policy_remediation.html.markdown @@ -90,7 +90,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Remediation. * `update` - (Defaults to 30 minutes) Used when updating the Policy Remediation. diff --git a/website/docs/r/resource_group_template_deployment.html.markdown b/website/docs/r/resource_group_template_deployment.html.markdown index 1ad1e02b9b48..6f349c948420 100644 --- a/website/docs/r/resource_group_template_deployment.html.markdown +++ b/website/docs/r/resource_group_template_deployment.html.markdown @@ -127,7 +127,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 3 hours) Used when creating the Resource Group Template Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group Template Deployment. diff --git a/website/docs/r/resource_policy_assignment.html.markdown b/website/docs/r/resource_policy_assignment.html.markdown index 31187b7d6339..965859fe0edf 100644 --- a/website/docs/r/resource_policy_assignment.html.markdown +++ b/website/docs/r/resource_policy_assignment.html.markdown @@ -113,7 +113,7 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Assignment for this Resource. * `read` - (Defaults to 5 minutes) Used when retrieving the Policy Assignment for this Resource. diff --git a/website/docs/r/resource_policy_exemption.html.markdown b/website/docs/r/resource_policy_exemption.html.markdown index ca4f56c0a4c0..4cb839ce4d8f 100644 --- a/website/docs/r/resource_policy_exemption.html.markdown +++ b/website/docs/r/resource_policy_exemption.html.markdown @@ -78,7 +78,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Exemption. * `update` - (Defaults to 30 minutes) Used when updating the Policy Exemption. diff --git a/website/docs/r/resource_policy_remediation.html.markdown b/website/docs/r/resource_policy_remediation.html.markdown index ec4a99443429..f6f10e476d3a 100644 --- a/website/docs/r/resource_policy_remediation.html.markdown +++ b/website/docs/r/resource_policy_remediation.html.markdown @@ -80,7 +80,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Remediation. * `update` - (Defaults to 30 minutes) Used when updating the Policy Remediation. diff --git a/website/docs/r/resource_provider_registration.html.markdown b/website/docs/r/resource_provider_registration.html.markdown index bf548f11b1f8..e309cf6054e4 100644 --- a/website/docs/r/resource_provider_registration.html.markdown +++ b/website/docs/r/resource_provider_registration.html.markdown @@ -65,7 +65,7 @@ A `feature` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 120 minutes) Used when registering the Resource Provider/Features. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Provider. diff --git a/website/docs/r/role_assignment.html.markdown b/website/docs/r/role_assignment.html.markdown index e73b2b99bec3..299690cb85a1 100644 --- a/website/docs/r/role_assignment.html.markdown +++ b/website/docs/r/role_assignment.html.markdown @@ -164,7 +164,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Role Assignment. * `update` - (Defaults to 30 minutes) Used when updating the Role Assignment. diff --git a/website/docs/r/role_definition.html.markdown b/website/docs/r/role_definition.html.markdown index b17065fb9e6a..beba8dd47257 100644 --- a/website/docs/r/role_definition.html.markdown +++ b/website/docs/r/role_definition.html.markdown @@ -75,7 +75,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Role Definition. * `update` - (Defaults to 30 minutes) Used when updating the Role Definition. diff --git a/website/docs/r/route.html.markdown b/website/docs/r/route.html.markdown index b009c7672729..d2f50a4efb85 100644 --- a/website/docs/r/route.html.markdown +++ b/website/docs/r/route.html.markdown @@ -61,7 +61,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Route. * `update` - (Defaults to 30 minutes) Used when updating the Route. diff --git a/website/docs/r/route_filter.html.markdown b/website/docs/r/route_filter.html.markdown index 14daa5d4875d..148c22a8e13a 100644 --- a/website/docs/r/route_filter.html.markdown +++ b/website/docs/r/route_filter.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Route Filter. * `read` - (Defaults to 5 minutes) Used when retrieving the Route Filter. diff --git a/website/docs/r/route_server.html.markdown b/website/docs/r/route_server.html.markdown index 39a6caecda6b..403bd68c99aa 100644 --- a/website/docs/r/route_server.html.markdown +++ b/website/docs/r/route_server.html.markdown @@ -81,7 +81,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Route Server. * `read` - (Defaults to 5 minutes) Used when retrieving the Route Server. diff --git a/website/docs/r/route_server_bgp_connection.html.markdown b/website/docs/r/route_server_bgp_connection.html.markdown index 5011524513d4..dec47c7280f6 100644 --- a/website/docs/r/route_server_bgp_connection.html.markdown +++ b/website/docs/r/route_server_bgp_connection.html.markdown @@ -41,7 +41,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Route Server Bgp Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the Route Server Bgp Connection. diff --git a/website/docs/r/route_table.html.markdown b/website/docs/r/route_table.html.markdown index 234848de3d3d..ee35d4b49a56 100644 --- a/website/docs/r/route_table.html.markdown +++ b/website/docs/r/route_table.html.markdown @@ -79,7 +79,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Route Table. * `update` - (Defaults to 30 minutes) Used when updating the Route Table. diff --git a/website/docs/r/search_service.html.markdown b/website/docs/r/search_service.html.markdown index bff8f9944b72..50dc46f83289 100644 --- a/website/docs/r/search_service.html.markdown +++ b/website/docs/r/search_service.html.markdown @@ -94,7 +94,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Search Service. * `read` - (Defaults to 5 minutes) Used when retrieving the Search Service. diff --git a/website/docs/r/security_center_assessment.html.markdown b/website/docs/r/security_center_assessment.html.markdown index 6811d87b5c44..2e63c4b36683 100644 --- a/website/docs/r/security_center_assessment.html.markdown +++ b/website/docs/r/security_center_assessment.html.markdown @@ -115,7 +115,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Security Center Assessment. * `read` - (Defaults to 5 minutes) Used when retrieving the Security Center Assessment. diff --git a/website/docs/r/security_center_assessment_policy.html.markdown b/website/docs/r/security_center_assessment_policy.html.markdown index 00c3e051a71c..56325788f96e 100644 --- a/website/docs/r/security_center_assessment_policy.html.markdown +++ b/website/docs/r/security_center_assessment_policy.html.markdown @@ -52,7 +52,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Security Center Assessment Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the Security Center Assessment Policy. diff --git a/website/docs/r/security_center_auto_provisioning.html.markdown b/website/docs/r/security_center_auto_provisioning.html.markdown index e2d584ea518d..a0c9c60e3e7e 100644 --- a/website/docs/r/security_center_auto_provisioning.html.markdown +++ b/website/docs/r/security_center_auto_provisioning.html.markdown @@ -34,7 +34,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Security Center Auto Provisioning. * `read` - (Defaults to 5 minutes) Used when retrieving the Security Center Auto Provisioning. diff --git a/website/docs/r/security_center_automation.html.markdown b/website/docs/r/security_center_automation.html.markdown index efa84d654d9e..c6cd00617c7d 100644 --- a/website/docs/r/security_center_automation.html.markdown +++ b/website/docs/r/security_center_automation.html.markdown @@ -150,7 +150,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Security Center Automation. * `read` - (Defaults to 5 minutes) Used when retrieving the Security Center Automation. diff --git a/website/docs/r/security_center_contact.html.markdown b/website/docs/r/security_center_contact.html.markdown index a1d8f758f9f7..6e81b1079f6a 100644 --- a/website/docs/r/security_center_contact.html.markdown +++ b/website/docs/r/security_center_contact.html.markdown @@ -41,7 +41,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Security Center Contact. * `update` - (Defaults to 60 minutes) Used when updating the Security Center Contact. diff --git a/website/docs/r/security_center_server_vulnerability_assessment_virtual_machine.html.markdown b/website/docs/r/security_center_server_vulnerability_assessment_virtual_machine.html.markdown index a60da144d61f..76007cdf67b3 100644 --- a/website/docs/r/security_center_server_vulnerability_assessment_virtual_machine.html.markdown +++ b/website/docs/r/security_center_server_vulnerability_assessment_virtual_machine.html.markdown @@ -92,7 +92,7 @@ In addition to all arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the Advanced Threat Protection. * `read` - (Defaults to 5 minutes) Used when retrieving the Advanced Threat Protection. diff --git a/website/docs/r/security_center_setting.html.markdown b/website/docs/r/security_center_setting.html.markdown index fb61942e0493..e33ed0c9f629 100644 --- a/website/docs/r/security_center_setting.html.markdown +++ b/website/docs/r/security_center_setting.html.markdown @@ -38,7 +38,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Security Center Setting. * `update` - (Defaults to 60 minutes) Used when updating the Security Center Setting. diff --git a/website/docs/r/security_center_subscription_pricing.html.markdown b/website/docs/r/security_center_subscription_pricing.html.markdown index 04b26982e61c..497f6ab8cfd7 100644 --- a/website/docs/r/security_center_subscription_pricing.html.markdown +++ b/website/docs/r/security_center_subscription_pricing.html.markdown @@ -38,7 +38,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Security Center Subscription Pricing. * `update` - (Defaults to 60 minutes) Used when updating the Security Center Subscription Pricing. diff --git a/website/docs/r/security_center_workspace.html.markdown b/website/docs/r/security_center_workspace.html.markdown index f6d5bc3056ee..85c0d889b2a3 100644 --- a/website/docs/r/security_center_workspace.html.markdown +++ b/website/docs/r/security_center_workspace.html.markdown @@ -49,7 +49,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Security Center Workspace. * `update` - (Defaults to 60 minutes) Used when updating the Security Center Workspace. diff --git a/website/docs/r/sentinel_alert_rule_fusion.html.markdown b/website/docs/r/sentinel_alert_rule_fusion.html.markdown index 64db54333f77..068e181ebbcd 100644 --- a/website/docs/r/sentinel_alert_rule_fusion.html.markdown +++ b/website/docs/r/sentinel_alert_rule_fusion.html.markdown @@ -65,7 +65,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Sentinel Fusion Alert Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel Fusion Alert Rule. diff --git a/website/docs/r/sentinel_alert_rule_ms_security_incident.html.markdown b/website/docs/r/sentinel_alert_rule_ms_security_incident.html.markdown index 1175a8746fcb..2cdbb335bd3b 100644 --- a/website/docs/r/sentinel_alert_rule_ms_security_incident.html.markdown +++ b/website/docs/r/sentinel_alert_rule_ms_security_incident.html.markdown @@ -87,7 +87,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Sentinel MS Security Incident Alert Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel MS Security Incident Alert Rule. diff --git a/website/docs/r/sentinel_alert_rule_scheduled.html.markdown b/website/docs/r/sentinel_alert_rule_scheduled.html.markdown index 8317d993503c..76e415ec07b5 100644 --- a/website/docs/r/sentinel_alert_rule_scheduled.html.markdown +++ b/website/docs/r/sentinel_alert_rule_scheduled.html.markdown @@ -176,7 +176,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Sentinel Scheduled Alert Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel Scheduled Alert Rule. diff --git a/website/docs/r/sentinel_automation_rule.html.markdown b/website/docs/r/sentinel_automation_rule.html.markdown index 0ed218021cfb..53dda9b83a2f 100644 --- a/website/docs/r/sentinel_automation_rule.html.markdown +++ b/website/docs/r/sentinel_automation_rule.html.markdown @@ -132,7 +132,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the Sentinel Automation Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel Automation Rule. diff --git a/website/docs/r/sentinel_data_connector_aws_cloud_trail.html.markdown b/website/docs/r/sentinel_data_connector_aws_cloud_trail.html.markdown index a78a7b0148d0..85da1b0dc9db 100644 --- a/website/docs/r/sentinel_data_connector_aws_cloud_trail.html.markdown +++ b/website/docs/r/sentinel_data_connector_aws_cloud_trail.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the AWS CloudTrail Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the AWS CloudTrail Data Connector. diff --git a/website/docs/r/sentinel_data_connector_aws_s3.html.markdown b/website/docs/r/sentinel_data_connector_aws_s3.html.markdown index b2f413d95f9f..651255b45ca5 100644 --- a/website/docs/r/sentinel_data_connector_aws_s3.html.markdown +++ b/website/docs/r/sentinel_data_connector_aws_s3.html.markdown @@ -70,7 +70,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the AWS S3 Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the AWS S3 Data Connector. diff --git a/website/docs/r/sentinel_data_connector_azure_active_directory.html.markdown b/website/docs/r/sentinel_data_connector_azure_active_directory.html.markdown index 232d8a922298..9ecfda7fbce6 100644 --- a/website/docs/r/sentinel_data_connector_azure_active_directory.html.markdown +++ b/website/docs/r/sentinel_data_connector_azure_active_directory.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Active Directory Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Active Directory Data Connector. diff --git a/website/docs/r/sentinel_data_connector_azure_advanced_threat_protection.html.markdown b/website/docs/r/sentinel_data_connector_azure_advanced_threat_protection.html.markdown index fa0f946d9e79..3b945bc318e6 100644 --- a/website/docs/r/sentinel_data_connector_azure_advanced_threat_protection.html.markdown +++ b/website/docs/r/sentinel_data_connector_azure_advanced_threat_protection.html.markdown @@ -68,7 +68,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Advanced Threat Protection Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Advanced Threat Protection Data Connector. diff --git a/website/docs/r/sentinel_data_connector_azure_security_center.html.markdown b/website/docs/r/sentinel_data_connector_azure_security_center.html.markdown index 8976f7213507..898fb7726292 100644 --- a/website/docs/r/sentinel_data_connector_azure_security_center.html.markdown +++ b/website/docs/r/sentinel_data_connector_azure_security_center.html.markdown @@ -64,7 +64,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Security Center Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Security Center Data Connector. diff --git a/website/docs/r/sentinel_data_connector_microsoft_cloud_app_security.html.markdown b/website/docs/r/sentinel_data_connector_microsoft_cloud_app_security.html.markdown index 12d3b3416b7d..155c317864c8 100644 --- a/website/docs/r/sentinel_data_connector_microsoft_cloud_app_security.html.markdown +++ b/website/docs/r/sentinel_data_connector_microsoft_cloud_app_security.html.markdown @@ -74,7 +74,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Microsoft Cloud App Security Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the Microsoft Cloud App Security Data Connector. diff --git a/website/docs/r/sentinel_data_connector_microsoft_defender_advanced_threat_protection.html.markdown b/website/docs/r/sentinel_data_connector_microsoft_defender_advanced_threat_protection.html.markdown index 186483a99e79..c8870cd2f4a4 100644 --- a/website/docs/r/sentinel_data_connector_microsoft_defender_advanced_threat_protection.html.markdown +++ b/website/docs/r/sentinel_data_connector_microsoft_defender_advanced_threat_protection.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Microsoft Defender Advanced Threat Protection Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the Microsoft Defender Advanced Threat Protection Data Connector. diff --git a/website/docs/r/sentinel_data_connector_office_365.html.markdown b/website/docs/r/sentinel_data_connector_office_365.html.markdown index b90a1f1b465e..6164e8f7ebcf 100644 --- a/website/docs/r/sentinel_data_connector_office_365.html.markdown +++ b/website/docs/r/sentinel_data_connector_office_365.html.markdown @@ -74,7 +74,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Office 365 Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the Office 365 Data Connector. diff --git a/website/docs/r/sentinel_data_connector_threat_intelligence.html.markdown b/website/docs/r/sentinel_data_connector_threat_intelligence.html.markdown index c2ab82bcc8c1..079dfa63a6ce 100644 --- a/website/docs/r/sentinel_data_connector_threat_intelligence.html.markdown +++ b/website/docs/r/sentinel_data_connector_threat_intelligence.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Threat Intelligence Data Connector. * `read` - (Defaults to 5 minutes) Used when retrieving the Threat Intelligence Data Connector. diff --git a/website/docs/r/sentinel_watchlist.html.markdown b/website/docs/r/sentinel_watchlist.html.markdown index 222040ac36c1..d08365cbbc7e 100644 --- a/website/docs/r/sentinel_watchlist.html.markdown +++ b/website/docs/r/sentinel_watchlist.html.markdown @@ -74,7 +74,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Sentinel Watchlist. * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel Watchlist. diff --git a/website/docs/r/sentinel_watchlist_item.html.markdown b/website/docs/r/sentinel_watchlist_item.html.markdown index 737f379f9c75..95e0d8011aba 100644 --- a/website/docs/r/sentinel_watchlist_item.html.markdown +++ b/website/docs/r/sentinel_watchlist_item.html.markdown @@ -78,7 +78,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Sentinel Watchlist Item. * `read` - (Defaults to 5 minutes) Used when retrieving the Sentinel Watchlist Item. diff --git a/website/docs/r/service_fabric_cluster.html.markdown b/website/docs/r/service_fabric_cluster.html.markdown index 806901957cd3..2210e9a4f98a 100644 --- a/website/docs/r/service_fabric_cluster.html.markdown +++ b/website/docs/r/service_fabric_cluster.html.markdown @@ -288,7 +288,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Service Fabric Cluster. * `update` - (Defaults to 30 minutes) Used when updating the Service Fabric Cluster. diff --git a/website/docs/r/service_fabric_managed_cluster.html.markdown b/website/docs/r/service_fabric_managed_cluster.html.markdown index d47be4846ba0..a7af2cbb5bee 100644 --- a/website/docs/r/service_fabric_managed_cluster.html.markdown +++ b/website/docs/r/service_fabric_managed_cluster.html.markdown @@ -199,7 +199,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour and 30 minutes) Used when creating the Resource Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Resource Group. diff --git a/website/docs/r/service_plan.html.markdown b/website/docs/r/service_plan.html.markdown index 54fe8967bc5b..b65085b40d4c 100644 --- a/website/docs/r/service_plan.html.markdown +++ b/website/docs/r/service_plan.html.markdown @@ -79,7 +79,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Service Plan. * `read` - (Defaults to 5 minutes) Used when retrieving the Service Plan. diff --git a/website/docs/r/servicebus_namespace.html.markdown b/website/docs/r/servicebus_namespace.html.markdown index f1f1f144e0c6..65621a023f53 100644 --- a/website/docs/r/servicebus_namespace.html.markdown +++ b/website/docs/r/servicebus_namespace.html.markdown @@ -116,7 +116,7 @@ The following attributes are exported only if there is an authorization rule nam ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Namespace. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Namespace. diff --git a/website/docs/r/servicebus_namespace_authorization_rule.html.markdown b/website/docs/r/servicebus_namespace_authorization_rule.html.markdown index 728bfbeae61b..38297f27fe99 100644 --- a/website/docs/r/servicebus_namespace_authorization_rule.html.markdown +++ b/website/docs/r/servicebus_namespace_authorization_rule.html.markdown @@ -75,7 +75,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Namespace Authorization Rule. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Namespace Authorization Rule. diff --git a/website/docs/r/servicebus_namespace_disaster_recovery_config.html.markdown b/website/docs/r/servicebus_namespace_disaster_recovery_config.html.markdown index a90044e6d3dd..30f561825eda 100644 --- a/website/docs/r/servicebus_namespace_disaster_recovery_config.html.markdown +++ b/website/docs/r/servicebus_namespace_disaster_recovery_config.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Service Bus Namespace Disaster Recovery Config. * `update` - (Defaults to 30 minutes) Used when updating the Service Bus Namespace Disaster Recovery Config. diff --git a/website/docs/r/servicebus_namespace_network_rule_set.html.markdown b/website/docs/r/servicebus_namespace_network_rule_set.html.markdown index c1a2509dcff3..1860bc5dc94e 100644 --- a/website/docs/r/servicebus_namespace_network_rule_set.html.markdown +++ b/website/docs/r/servicebus_namespace_network_rule_set.html.markdown @@ -97,7 +97,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Namespace Network Rule Set. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Namespace Network Rule Set. diff --git a/website/docs/r/servicebus_queue.html.markdown b/website/docs/r/servicebus_queue.html.markdown index e99a20390f51..c487c51b5b6b 100644 --- a/website/docs/r/servicebus_queue.html.markdown +++ b/website/docs/r/servicebus_queue.html.markdown @@ -91,7 +91,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Queue. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Queue. diff --git a/website/docs/r/servicebus_queue_authorization_rule.html.markdown b/website/docs/r/servicebus_queue_authorization_rule.html.markdown index 394bd44af16d..8275e43f2000 100644 --- a/website/docs/r/servicebus_queue_authorization_rule.html.markdown +++ b/website/docs/r/servicebus_queue_authorization_rule.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Queue Authorization Rule. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Queue Authorization Rule. diff --git a/website/docs/r/servicebus_subscription.html.markdown b/website/docs/r/servicebus_subscription.html.markdown index a74894fb031f..b6e0b6c91ec1 100644 --- a/website/docs/r/servicebus_subscription.html.markdown +++ b/website/docs/r/servicebus_subscription.html.markdown @@ -81,7 +81,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Subscription. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Subscription. diff --git a/website/docs/r/servicebus_subscription_rule.html.markdown b/website/docs/r/servicebus_subscription_rule.html.markdown index 9563511518b6..f38adef64bdb 100644 --- a/website/docs/r/servicebus_subscription_rule.html.markdown +++ b/website/docs/r/servicebus_subscription_rule.html.markdown @@ -144,7 +144,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Subscription Rule. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Subscription Rule. diff --git a/website/docs/r/servicebus_topic.html.markdown b/website/docs/r/servicebus_topic.html.markdown index df342a068bee..e8ce69cb6686 100644 --- a/website/docs/r/servicebus_topic.html.markdown +++ b/website/docs/r/servicebus_topic.html.markdown @@ -96,7 +96,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Topic. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Topic. diff --git a/website/docs/r/servicebus_topic_authorization_rule.html.markdown b/website/docs/r/servicebus_topic_authorization_rule.html.markdown index 25799b943b41..2bed43120ac9 100644 --- a/website/docs/r/servicebus_topic_authorization_rule.html.markdown +++ b/website/docs/r/servicebus_topic_authorization_rule.html.markdown @@ -79,7 +79,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the ServiceBus Topic Authorization Rule. * `update` - (Defaults to 30 minutes) Used when updating the ServiceBus Topic Authorization Rule. diff --git a/website/docs/r/shared_image.html.markdown b/website/docs/r/shared_image.html.markdown index 34d9c610ee60..dbb39a3ce547 100644 --- a/website/docs/r/shared_image.html.markdown +++ b/website/docs/r/shared_image.html.markdown @@ -126,7 +126,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Shared Image. * `update` - (Defaults to 30 minutes) Used when updating the Shared Image. diff --git a/website/docs/r/shared_image_gallery.html.markdown b/website/docs/r/shared_image_gallery.html.markdown index 5f895af0ddc5..139f28c9c352 100644 --- a/website/docs/r/shared_image_gallery.html.markdown +++ b/website/docs/r/shared_image_gallery.html.markdown @@ -56,7 +56,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Shared Image Gallery. * `update` - (Defaults to 30 minutes) Used when updating the Shared Image Gallery. diff --git a/website/docs/r/shared_image_version.html.markdown b/website/docs/r/shared_image_version.html.markdown index f7cc48e15133..bcb6a01364f3 100644 --- a/website/docs/r/shared_image_version.html.markdown +++ b/website/docs/r/shared_image_version.html.markdown @@ -93,7 +93,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Shared Image Version. * `update` - (Defaults to 30 minutes) Used when updating the Shared Image Version. diff --git a/website/docs/r/signalr_service.html.markdown b/website/docs/r/signalr_service.html.markdown index 70f5ad419e2c..67c31ac9ceed 100644 --- a/website/docs/r/signalr_service.html.markdown +++ b/website/docs/r/signalr_service.html.markdown @@ -135,7 +135,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SignalR Service. * `update` - (Defaults to 30 minutes) Used when updating the SignalR Service. diff --git a/website/docs/r/signalr_service_network_acl.html.markdown b/website/docs/r/signalr_service_network_acl.html.markdown index 5c3f0afa10c2..b62c55194c43 100644 --- a/website/docs/r/signalr_service_network_acl.html.markdown +++ b/website/docs/r/signalr_service_network_acl.html.markdown @@ -124,7 +124,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network ACL of the SignalR service * `read` - (Defaults to 5 minutes) Used when retrieving the Network ACL of the SignalR service diff --git a/website/docs/r/signalr_shared_private_link.html.markdown b/website/docs/r/signalr_shared_private_link.html.markdown index 5803a7a9fd71..fa29a8bc71ca 100644 --- a/website/docs/r/signalr_shared_private_link.html.markdown +++ b/website/docs/r/signalr_shared_private_link.html.markdown @@ -87,7 +87,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Signalr Shared Private Link Resource. * `update` - (Defaults to 30 minutes) Used when updating the Signalr Shared Private Link Resource. diff --git a/website/docs/r/site_recovery_fabric.html.markdown b/website/docs/r/site_recovery_fabric.html.markdown index 9db7d30714a2..2cd11d5454bd 100644 --- a/website/docs/r/site_recovery_fabric.html.markdown +++ b/website/docs/r/site_recovery_fabric.html.markdown @@ -58,7 +58,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Site Recovery Fabric. * `update` - (Defaults to 30 minutes) Used when updating the Site Recovery Fabric. diff --git a/website/docs/r/site_recovery_network_mapping.html.markdown b/website/docs/r/site_recovery_network_mapping.html.markdown index de58dd5e23a8..2f8a308542c2 100644 --- a/website/docs/r/site_recovery_network_mapping.html.markdown +++ b/website/docs/r/site_recovery_network_mapping.html.markdown @@ -96,7 +96,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Site Recovery Network Mapping. * `update` - (Defaults to 30 minutes) Used when updating the Site Recovery Network Mapping. diff --git a/website/docs/r/site_recovery_protection_container.html.markdown b/website/docs/r/site_recovery_protection_container.html.markdown index 5a197b6a6286..641edfdabedf 100644 --- a/website/docs/r/site_recovery_protection_container.html.markdown +++ b/website/docs/r/site_recovery_protection_container.html.markdown @@ -65,7 +65,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Site Recovery Protection Container. * `update` - (Defaults to 30 minutes) Used when updating the Site Recovery Protection Container. diff --git a/website/docs/r/site_recovery_protection_container_mapping.html.markdown b/website/docs/r/site_recovery_protection_container_mapping.html.markdown index 4824965cbbfc..c0a8e444941d 100644 --- a/website/docs/r/site_recovery_protection_container_mapping.html.markdown +++ b/website/docs/r/site_recovery_protection_container_mapping.html.markdown @@ -103,7 +103,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Site Recovery Protection Container Mapping. * `update` - (Defaults to 30 minutes) Used when updating the Site Recovery Protection Container Mapping. diff --git a/website/docs/r/site_recovery_replicated_vm.html.markdown b/website/docs/r/site_recovery_replicated_vm.html.markdown index 174f92d67648..61713de07e72 100644 --- a/website/docs/r/site_recovery_replicated_vm.html.markdown +++ b/website/docs/r/site_recovery_replicated_vm.html.markdown @@ -286,7 +286,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 120 minutes) Used when creating the Site Recovery Replicated VM. * `update` - (Defaults to 80 minutes) Used when updating the Site Recovery Replicated VM. diff --git a/website/docs/r/site_recovery_replication_policy.html.markdown b/website/docs/r/site_recovery_replication_policy.html.markdown index c0926a2b45bc..7ab3b9254265 100644 --- a/website/docs/r/site_recovery_replication_policy.html.markdown +++ b/website/docs/r/site_recovery_replication_policy.html.markdown @@ -56,7 +56,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Site Recovery Replication Policy. * `update` - (Defaults to 30 minutes) Used when updating the Site Recovery Replication Policy. diff --git a/website/docs/r/snapshot.html.markdown b/website/docs/r/snapshot.html.markdown index 3985293eeb13..9830bf4fba8c 100644 --- a/website/docs/r/snapshot.html.markdown +++ b/website/docs/r/snapshot.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Snapshot. * `update` - (Defaults to 30 minutes) Used when updating the Snapshot. diff --git a/website/docs/r/source_control_token.html.markdown b/website/docs/r/source_control_token.html.markdown index c3d2a685775a..d3c08e46a5d6 100644 --- a/website/docs/r/source_control_token.html.markdown +++ b/website/docs/r/source_control_token.html.markdown @@ -39,7 +39,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 minutes) Used when creating the App Service Source GitHub Token. * `read` - (Defaults to 5 minutes) Used when retrieving the App Service Source GitHub Token. diff --git a/website/docs/r/spatial_anchors_account.html.markdown b/website/docs/r/spatial_anchors_account.html.markdown index 366cdccedf2d..30db508a956e 100644 --- a/website/docs/r/spatial_anchors_account.html.markdown +++ b/website/docs/r/spatial_anchors_account.html.markdown @@ -49,7 +49,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spatial Anchors Account. * `update` - (Defaults to 30 minutes) Used when updating the Spatial Anchors Account. diff --git a/website/docs/r/spring_cloud_active_deployment.html.markdown b/website/docs/r/spring_cloud_active_deployment.html.markdown index 71428c6520ed..191488357912 100644 --- a/website/docs/r/spring_cloud_active_deployment.html.markdown +++ b/website/docs/r/spring_cloud_active_deployment.html.markdown @@ -77,7 +77,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Active Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Active Deployment. diff --git a/website/docs/r/spring_cloud_api_portal.html.markdown b/website/docs/r/spring_cloud_api_portal.html.markdown index a1e557cdc424..ab0609962984 100644 --- a/website/docs/r/spring_cloud_api_portal.html.markdown +++ b/website/docs/r/spring_cloud_api_portal.html.markdown @@ -92,7 +92,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Spring Cloud API Portal. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud API Portal. diff --git a/website/docs/r/spring_cloud_api_portal_custom_domain.html.markdown b/website/docs/r/spring_cloud_api_portal_custom_domain.html.markdown index 5a486bde43ec..f2b8d0cc4c31 100644 --- a/website/docs/r/spring_cloud_api_portal_custom_domain.html.markdown +++ b/website/docs/r/spring_cloud_api_portal_custom_domain.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud API Portal Domain. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud API Portal Domain. diff --git a/website/docs/r/spring_cloud_app.html.markdown b/website/docs/r/spring_cloud_app.html.markdown index 34f9a26f33a7..e9609fa943f7 100644 --- a/website/docs/r/spring_cloud_app.html.markdown +++ b/website/docs/r/spring_cloud_app.html.markdown @@ -114,7 +114,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Application. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Application. diff --git a/website/docs/r/spring_cloud_app_cosmosdb_association.html.markdown b/website/docs/r/spring_cloud_app_cosmosdb_association.html.markdown index 7d28cf72a29c..fff3ee8e5e9a 100644 --- a/website/docs/r/spring_cloud_app_cosmosdb_association.html.markdown +++ b/website/docs/r/spring_cloud_app_cosmosdb_association.html.markdown @@ -88,7 +88,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Application CosmosDB Association. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Application CosmosDB Association. diff --git a/website/docs/r/spring_cloud_app_mysql_association.html.markdown b/website/docs/r/spring_cloud_app_mysql_association.html.markdown index 7ee847d0067f..badb43261770 100644 --- a/website/docs/r/spring_cloud_app_mysql_association.html.markdown +++ b/website/docs/r/spring_cloud_app_mysql_association.html.markdown @@ -88,7 +88,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Application MySQL Association. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Application MySQL Association. diff --git a/website/docs/r/spring_cloud_app_redis_association.html.markdown b/website/docs/r/spring_cloud_app_redis_association.html.markdown index e44ae8efc1d5..f0e6c21e5b8b 100644 --- a/website/docs/r/spring_cloud_app_redis_association.html.markdown +++ b/website/docs/r/spring_cloud_app_redis_association.html.markdown @@ -75,7 +75,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Application Redis Association. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Application Redis Association. diff --git a/website/docs/r/spring_cloud_build_deployment.html.markdown b/website/docs/r/spring_cloud_build_deployment.html.markdown index 56a4dda0109b..3e3cdad80176 100644 --- a/website/docs/r/spring_cloud_build_deployment.html.markdown +++ b/website/docs/r/spring_cloud_build_deployment.html.markdown @@ -92,7 +92,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Build Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Build Deployment. diff --git a/website/docs/r/spring_cloud_build_pack_binding.html.markdown b/website/docs/r/spring_cloud_build_pack_binding.html.markdown index 94980acb1677..1cf708ccc5fb 100644 --- a/website/docs/r/spring_cloud_build_pack_binding.html.markdown +++ b/website/docs/r/spring_cloud_build_pack_binding.html.markdown @@ -92,7 +92,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Buildpack Binding. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Buildpack Binding. diff --git a/website/docs/r/spring_cloud_builder.html.markdown b/website/docs/r/spring_cloud_builder.html.markdown index 003f86ac2253..56c9fb734b6b 100644 --- a/website/docs/r/spring_cloud_builder.html.markdown +++ b/website/docs/r/spring_cloud_builder.html.markdown @@ -81,7 +81,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Builder. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Builder. diff --git a/website/docs/r/spring_cloud_certificate.html.markdown b/website/docs/r/spring_cloud_certificate.html.markdown index a0a38800d9ea..35baa3bcbd85 100644 --- a/website/docs/r/spring_cloud_certificate.html.markdown +++ b/website/docs/r/spring_cloud_certificate.html.markdown @@ -135,7 +135,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Certificate. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Certificate. diff --git a/website/docs/r/spring_cloud_configuration_service.html.markdown b/website/docs/r/spring_cloud_configuration_service.html.markdown index fa6e702e873d..b42b06b25087 100644 --- a/website/docs/r/spring_cloud_configuration_service.html.markdown +++ b/website/docs/r/spring_cloud_configuration_service.html.markdown @@ -91,7 +91,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Configuration Service. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Configuration Service. diff --git a/website/docs/r/spring_cloud_container_deployment.html.markdown b/website/docs/r/spring_cloud_container_deployment.html.markdown index 4ef3fc0fa263..93d9f7f144b8 100644 --- a/website/docs/r/spring_cloud_container_deployment.html.markdown +++ b/website/docs/r/spring_cloud_container_deployment.html.markdown @@ -99,7 +99,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Container Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Container Deployment. diff --git a/website/docs/r/spring_cloud_custom_domain.html.markdown b/website/docs/r/spring_cloud_custom_domain.html.markdown index 28c861fe762b..c53333f74a7b 100644 --- a/website/docs/r/spring_cloud_custom_domain.html.markdown +++ b/website/docs/r/spring_cloud_custom_domain.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Custom Domain. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Custom Domain. diff --git a/website/docs/r/spring_cloud_gateway.html.markdown b/website/docs/r/spring_cloud_gateway.html.markdown index d42664ce9704..68c386a628fd 100644 --- a/website/docs/r/spring_cloud_gateway.html.markdown +++ b/website/docs/r/spring_cloud_gateway.html.markdown @@ -156,7 +156,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Gateway. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Gateway. diff --git a/website/docs/r/spring_cloud_gateway_custom_domain.html.markdown b/website/docs/r/spring_cloud_gateway_custom_domain.html.markdown index 2c21ae0d322b..faff8df23e05 100644 --- a/website/docs/r/spring_cloud_gateway_custom_domain.html.markdown +++ b/website/docs/r/spring_cloud_gateway_custom_domain.html.markdown @@ -60,7 +60,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Gateway Custom Domain. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Gateway Custom Domain. diff --git a/website/docs/r/spring_cloud_gateway_route_config.html.markdown b/website/docs/r/spring_cloud_gateway_route_config.html.markdown index 1a73224d1288..40adcdcbcdb1 100644 --- a/website/docs/r/spring_cloud_gateway_route_config.html.markdown +++ b/website/docs/r/spring_cloud_gateway_route_config.html.markdown @@ -102,7 +102,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Gateway Route Config. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Gateway Route Config. diff --git a/website/docs/r/spring_cloud_java_deployment.html.markdown b/website/docs/r/spring_cloud_java_deployment.html.markdown index e73e17199f2a..f116acdb26d4 100644 --- a/website/docs/r/spring_cloud_java_deployment.html.markdown +++ b/website/docs/r/spring_cloud_java_deployment.html.markdown @@ -97,7 +97,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Deployment. diff --git a/website/docs/r/spring_cloud_service.html.markdown b/website/docs/r/spring_cloud_service.html.markdown index 2be0025a27d1..e8d4b9cf2f34 100644 --- a/website/docs/r/spring_cloud_service.html.markdown +++ b/website/docs/r/spring_cloud_service.html.markdown @@ -182,7 +182,7 @@ The `required_network_traffic_rules` supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Spring Cloud Service. * `update` - (Defaults to 30 minutes) Used when updating the Spring Cloud Service. diff --git a/website/docs/r/spring_cloud_storage.html.markdown b/website/docs/r/spring_cloud_storage.html.markdown index a3b61201dfd3..ca3d9d7ddc5e 100644 --- a/website/docs/r/spring_cloud_storage.html.markdown +++ b/website/docs/r/spring_cloud_storage.html.markdown @@ -60,7 +60,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Spring Cloud Storage. * `read` - (Defaults to 5 minutes) Used when retrieving the Spring Cloud Storage. diff --git a/website/docs/r/sql_active_directory_administrator.html.markdown b/website/docs/r/sql_active_directory_administrator.html.markdown index 0ec51d3e34a5..751ac30341cc 100644 --- a/website/docs/r/sql_active_directory_administrator.html.markdown +++ b/website/docs/r/sql_active_directory_administrator.html.markdown @@ -64,7 +64,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Active Directory Administrator. * `update` - (Defaults to 30 minutes) Used when updating the SQL Active Directory Administrator. diff --git a/website/docs/r/sql_database.html.markdown b/website/docs/r/sql_database.html.markdown index cbbc755d0776..b462390190d9 100644 --- a/website/docs/r/sql_database.html.markdown +++ b/website/docs/r/sql_database.html.markdown @@ -150,7 +150,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the SQL Database. * `update` - (Defaults to 60 minutes) Used when updating the SQL Database. diff --git a/website/docs/r/sql_elasticpool.html.markdown b/website/docs/r/sql_elasticpool.html.markdown index f6a68a3010ff..4328e85db022 100644 --- a/website/docs/r/sql_elasticpool.html.markdown +++ b/website/docs/r/sql_elasticpool.html.markdown @@ -78,7 +78,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Elastic Pool. * `update` - (Defaults to 30 minutes) Used when updating the SQL Elastic Pool. diff --git a/website/docs/r/sql_failover_group.html.markdown b/website/docs/r/sql_failover_group.html.markdown index 6c124733b5e5..9fa51d6c4bae 100644 --- a/website/docs/r/sql_failover_group.html.markdown +++ b/website/docs/r/sql_failover_group.html.markdown @@ -110,7 +110,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Failover Group. * `update` - (Defaults to 30 minutes) Used when updating the SQL Failover Group. diff --git a/website/docs/r/sql_firewall_rule.html.markdown b/website/docs/r/sql_firewall_rule.html.markdown index 3caf3fe5a627..af0651884be5 100644 --- a/website/docs/r/sql_firewall_rule.html.markdown +++ b/website/docs/r/sql_firewall_rule.html.markdown @@ -62,7 +62,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the SQL Firewall Rule. diff --git a/website/docs/r/sql_managed_instance_active_directory_administrator.html.markdown b/website/docs/r/sql_managed_instance_active_directory_administrator.html.markdown index c2c4023f4888..2cdbc0c5ef5e 100644 --- a/website/docs/r/sql_managed_instance_active_directory_administrator.html.markdown +++ b/website/docs/r/sql_managed_instance_active_directory_administrator.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Active Directory Administrator. * `update` - (Defaults to 30 minutes) Used when updating the SQL Active Directory Administrator. diff --git a/website/docs/r/sql_managed_instance_failover_group.html.markdown b/website/docs/r/sql_managed_instance_failover_group.html.markdown index d60b9fe0fca9..a0d67da47e26 100644 --- a/website/docs/r/sql_managed_instance_failover_group.html.markdown +++ b/website/docs/r/sql_managed_instance_failover_group.html.markdown @@ -126,7 +126,7 @@ A `partner_region` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Instance Failover Group. * `read` - (Defaults to 5 minutes) Used when retrieving the SQL Instance Failover Group. diff --git a/website/docs/r/sql_server.html.markdown b/website/docs/r/sql_server.html.markdown index 3c10459312cd..b82cba1104f7 100644 --- a/website/docs/r/sql_server.html.markdown +++ b/website/docs/r/sql_server.html.markdown @@ -106,7 +106,7 @@ The following attributes are exported: ### Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Microsoft SQL Server. * `update` - (Defaults to 60 minutes) Used when updating the Microsoft SQL Server. diff --git a/website/docs/r/sql_virtual_network_rule.html.markdown b/website/docs/r/sql_virtual_network_rule.html.markdown index 36a9d8b66b64..b7b9c2395664 100644 --- a/website/docs/r/sql_virtual_network_rule.html.markdown +++ b/website/docs/r/sql_virtual_network_rule.html.markdown @@ -81,7 +81,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the SQL Virtual Network Rule. * `update` - (Defaults to 30 minutes) Used when updating the SQL Virtual Network Rule. diff --git a/website/docs/r/ssh_public_key.html.markdown b/website/docs/r/ssh_public_key.html.markdown index 6839e806e19a..68c33012c97f 100644 --- a/website/docs/r/ssh_public_key.html.markdown +++ b/website/docs/r/ssh_public_key.html.markdown @@ -45,7 +45,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 45 minutes) Used when creating the SSH Public Key. * `read` - (Defaults to 5 minutes) Used when retrieving the SSH Public Key. diff --git a/website/docs/r/stack_hci_cluster.html.markdown b/website/docs/r/stack_hci_cluster.html.markdown index e4825aed79e0..9f4af2c5edf7 100644 --- a/website/docs/r/stack_hci_cluster.html.markdown +++ b/website/docs/r/stack_hci_cluster.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Stack HCI Cluster. * `read` - (Defaults to 5 minutes) Used when retrieving the Azure Stack HCI Cluster. diff --git a/website/docs/r/static_site.html.markdown b/website/docs/r/static_site.html.markdown index ac80cde1b4a2..468f21e6fc3f 100644 --- a/website/docs/r/static_site.html.markdown +++ b/website/docs/r/static_site.html.markdown @@ -60,7 +60,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Static Web App. * `read` - (Defaults to 5 minutes) Used when retrieving the Static Web App. diff --git a/website/docs/r/static_site_custom_domain.html.markdown b/website/docs/r/static_site_custom_domain.html.markdown index 0af1cc3ce8c6..2521a235bd92 100644 --- a/website/docs/r/static_site_custom_domain.html.markdown +++ b/website/docs/r/static_site_custom_domain.html.markdown @@ -94,7 +94,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Static Site Custom Domain. * `read` - (Defaults to 5 minutes) Used when retrieving the Static Site Custom Domain. diff --git a/website/docs/r/storage_account.html.markdown b/website/docs/r/storage_account.html.markdown index 337020f369b1..dd3ce53895d6 100644 --- a/website/docs/r/storage_account.html.markdown +++ b/website/docs/r/storage_account.html.markdown @@ -473,7 +473,7 @@ An `identity` exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Storage Account. * `update` - (Defaults to 60 minutes) Used when updating the Storage Account. diff --git a/website/docs/r/storage_account_customer_managed_key.html.markdown b/website/docs/r/storage_account_customer_managed_key.html.markdown index 1640a6e1ceb3..f156d8905ac4 100644 --- a/website/docs/r/storage_account_customer_managed_key.html.markdown +++ b/website/docs/r/storage_account_customer_managed_key.html.markdown @@ -109,7 +109,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Account Customer Managed Keys. * `update` - (Defaults to 30 minutes) Used when updating the Storage Account Customer Managed Keys. diff --git a/website/docs/r/storage_account_network_rules.html.markdown b/website/docs/r/storage_account_network_rules.html.markdown index 4daeed61c834..bc0665c30f03 100644 --- a/website/docs/r/storage_account_network_rules.html.markdown +++ b/website/docs/r/storage_account_network_rules.html.markdown @@ -104,7 +104,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Network Rules for this Storage Account. * `update` - (Defaults to 60 minutes) Used when updating the Network Rules for this Storage Account. diff --git a/website/docs/r/storage_blob.html.markdown b/website/docs/r/storage_blob.html.markdown index e40a0d632e3f..c341c014d80a 100644 --- a/website/docs/r/storage_blob.html.markdown +++ b/website/docs/r/storage_blob.html.markdown @@ -90,7 +90,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Blob. * `update` - (Defaults to 30 minutes) Used when updating the Storage Blob. diff --git a/website/docs/r/storage_blob_inventory_policy.html.markdown b/website/docs/r/storage_blob_inventory_policy.html.markdown index bf9002b2328d..f5aefd63d3ed 100644 --- a/website/docs/r/storage_blob_inventory_policy.html.markdown +++ b/website/docs/r/storage_blob_inventory_policy.html.markdown @@ -111,7 +111,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Blob Inventory Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Blob Inventory Policy. diff --git a/website/docs/r/storage_container.html.markdown b/website/docs/r/storage_container.html.markdown index e06a5d1a1608..0e7f3c1f0b07 100644 --- a/website/docs/r/storage_container.html.markdown +++ b/website/docs/r/storage_container.html.markdown @@ -63,7 +63,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Container. * `update` - (Defaults to 30 minutes) Used when updating the Storage Container. diff --git a/website/docs/r/storage_data_lake_gen2_filesystem.html.markdown b/website/docs/r/storage_data_lake_gen2_filesystem.html.markdown index e948c71d0bd1..6fb80e6c1143 100644 --- a/website/docs/r/storage_data_lake_gen2_filesystem.html.markdown +++ b/website/docs/r/storage_data_lake_gen2_filesystem.html.markdown @@ -81,7 +81,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Data Lake Gen2 File System. * `update` - (Defaults to 30 minutes) Used when updating the Data Lake Gen2 File System. diff --git a/website/docs/r/storage_data_lake_gen2_path.html.markdown b/website/docs/r/storage_data_lake_gen2_path.html.markdown index 82e3e4fcfd8e..e0e80cf10f8d 100644 --- a/website/docs/r/storage_data_lake_gen2_path.html.markdown +++ b/website/docs/r/storage_data_lake_gen2_path.html.markdown @@ -88,7 +88,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the path. * `update` - (Defaults to 30 minutes) Used when updating the path. diff --git a/website/docs/r/storage_encryption_scope.html.markdown b/website/docs/r/storage_encryption_scope.html.markdown index f1023db641f2..ef1fe356f998 100644 --- a/website/docs/r/storage_encryption_scope.html.markdown +++ b/website/docs/r/storage_encryption_scope.html.markdown @@ -63,7 +63,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Encryption Scope. * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Encryption Scope. diff --git a/website/docs/r/storage_management_policy.html.markdown b/website/docs/r/storage_management_policy.html.markdown index 1a38f338fc84..9155fe1fdfb3 100644 --- a/website/docs/r/storage_management_policy.html.markdown +++ b/website/docs/r/storage_management_policy.html.markdown @@ -169,7 +169,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Account Management Policy. * `update` - (Defaults to 30 minutes) Used when updating the Storage Account Management Policy. diff --git a/website/docs/r/storage_object_replication.html.markdown b/website/docs/r/storage_object_replication.html.markdown index 6e21473d260d..988b2aa7ae48 100644 --- a/website/docs/r/storage_object_replication.html.markdown +++ b/website/docs/r/storage_object_replication.html.markdown @@ -103,7 +103,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Object Replication. * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Object Replication. diff --git a/website/docs/r/storage_queue.html.markdown b/website/docs/r/storage_queue.html.markdown index 06aee1e33cc7..3270bcb52948 100644 --- a/website/docs/r/storage_queue.html.markdown +++ b/website/docs/r/storage_queue.html.markdown @@ -50,7 +50,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Queue. * `update` - (Defaults to 30 minutes) Used when updating the Storage Queue. diff --git a/website/docs/r/storage_share.html.markdown b/website/docs/r/storage_share.html.markdown index 15a4d72fe97c..dd7fb99ac42c 100644 --- a/website/docs/r/storage_share.html.markdown +++ b/website/docs/r/storage_share.html.markdown @@ -98,7 +98,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Share. * `update` - (Defaults to 30 minutes) Used when updating the Storage Share. diff --git a/website/docs/r/storage_share_directory.html.markdown b/website/docs/r/storage_share_directory.html.markdown index bb15380ec5bb..a464422d6b65 100644 --- a/website/docs/r/storage_share_directory.html.markdown +++ b/website/docs/r/storage_share_directory.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Share Directory. * `update` - (Defaults to 30 minutes) Used when updating the Storage Share Directory. diff --git a/website/docs/r/storage_share_file.html.markdown b/website/docs/r/storage_share_file.html.markdown index 5ce0cf8a519d..289d62ef19e1 100644 --- a/website/docs/r/storage_share_file.html.markdown +++ b/website/docs/r/storage_share_file.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Share File. * `update` - (Defaults to 30 minutes) Used when updating the Storage Share File. diff --git a/website/docs/r/storage_sync.html.markdown b/website/docs/r/storage_sync.html.markdown index 2d335e6b3c7e..8b68560f82c5 100644 --- a/website/docs/r/storage_sync.html.markdown +++ b/website/docs/r/storage_sync.html.markdown @@ -53,7 +53,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Sync. * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Sync. diff --git a/website/docs/r/storage_sync_cloud_endpoint.html.markdown b/website/docs/r/storage_sync_cloud_endpoint.html.markdown index 32283c4b05e4..80837fa4a86b 100644 --- a/website/docs/r/storage_sync_cloud_endpoint.html.markdown +++ b/website/docs/r/storage_sync_cloud_endpoint.html.markdown @@ -81,7 +81,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 45 minutes) Used when creating the Storage Sync Cloud Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Sync Cloud Endpoint. diff --git a/website/docs/r/storage_sync_group.html.markdown b/website/docs/r/storage_sync_group.html.markdown index b534c4c83281..68362f6ae84e 100644 --- a/website/docs/r/storage_sync_group.html.markdown +++ b/website/docs/r/storage_sync_group.html.markdown @@ -50,7 +50,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Sync Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Storage Sync Group. diff --git a/website/docs/r/storage_table.html.markdown b/website/docs/r/storage_table.html.markdown index 909864dfd0d8..ae345f606a65 100644 --- a/website/docs/r/storage_table.html.markdown +++ b/website/docs/r/storage_table.html.markdown @@ -70,7 +70,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Table. * `update` - (Defaults to 30 minutes) Used when updating the Storage Table. diff --git a/website/docs/r/storage_table_entity.html.markdown b/website/docs/r/storage_table_entity.html.markdown index 711a8428d4ff..c5c1c8c56e64 100644 --- a/website/docs/r/storage_table_entity.html.markdown +++ b/website/docs/r/storage_table_entity.html.markdown @@ -69,7 +69,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Storage Table Entity. * `update` - (Defaults to 30 minutes) Used when updating the Storage Table Entity. diff --git a/website/docs/r/stream_analytics_cluster.html.markdown b/website/docs/r/stream_analytics_cluster.html.markdown index 271e8cc37bc4..26f1da12a560 100644 --- a/website/docs/r/stream_analytics_cluster.html.markdown +++ b/website/docs/r/stream_analytics_cluster.html.markdown @@ -49,7 +49,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Stream Analytics. * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics. diff --git a/website/docs/r/stream_analytics_function_javascript_uda.html.markdown b/website/docs/r/stream_analytics_function_javascript_uda.html.markdown index 4a01dadb10ad..d672cd1f8262 100644 --- a/website/docs/r/stream_analytics_function_javascript_uda.html.markdown +++ b/website/docs/r/stream_analytics_function_javascript_uda.html.markdown @@ -88,7 +88,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics JavaScript UDA Function. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics JavaScript UDA Function. diff --git a/website/docs/r/stream_analytics_function_javascript_udf.html.markdown b/website/docs/r/stream_analytics_function_javascript_udf.html.markdown index f274a6ee42d9..cf3d8176a308 100644 --- a/website/docs/r/stream_analytics_function_javascript_udf.html.markdown +++ b/website/docs/r/stream_analytics_function_javascript_udf.html.markdown @@ -82,7 +82,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics JavaScript UDF Function. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics JavaScript UDF Function. diff --git a/website/docs/r/stream_analytics_job.html.markdown b/website/docs/r/stream_analytics_job.html.markdown index 49d6f6e5c6cf..53fcefe022c7 100644 --- a/website/docs/r/stream_analytics_job.html.markdown +++ b/website/docs/r/stream_analytics_job.html.markdown @@ -109,7 +109,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Job. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Job. diff --git a/website/docs/r/stream_analytics_job_schedule.html.markdown b/website/docs/r/stream_analytics_job_schedule.html.markdown index 17190480d29d..bcacdd3b95d6 100644 --- a/website/docs/r/stream_analytics_job_schedule.html.markdown +++ b/website/docs/r/stream_analytics_job_schedule.html.markdown @@ -134,7 +134,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Job. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Job. diff --git a/website/docs/r/stream_analytics_managed_private_endpoint.html.markdown b/website/docs/r/stream_analytics_managed_private_endpoint.html.markdown index 39b23c4a13ae..ddb25bd0e464 100644 --- a/website/docs/r/stream_analytics_managed_private_endpoint.html.markdown +++ b/website/docs/r/stream_analytics_managed_private_endpoint.html.markdown @@ -66,7 +66,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics. * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics. diff --git a/website/docs/r/stream_analytics_output_blob.html.markdown b/website/docs/r/stream_analytics_output_blob.html.markdown index 227539834f26..88d43fb8c084 100644 --- a/website/docs/r/stream_analytics_output_blob.html.markdown +++ b/website/docs/r/stream_analytics_output_blob.html.markdown @@ -114,7 +114,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output Blob Storage. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Output Blob Storage. diff --git a/website/docs/r/stream_analytics_output_cosmosdb.html.markdown b/website/docs/r/stream_analytics_output_cosmosdb.html.markdown index e995a3b8652a..8d679e6e6cc0 100644 --- a/website/docs/r/stream_analytics_output_cosmosdb.html.markdown +++ b/website/docs/r/stream_analytics_output_cosmosdb.html.markdown @@ -91,7 +91,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output for CosmosDB. * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics Output for CosmosDB. diff --git a/website/docs/r/stream_analytics_output_eventhub.html.markdown b/website/docs/r/stream_analytics_output_eventhub.html.markdown index aab2ec62fee5..fb1625d4e65e 100644 --- a/website/docs/r/stream_analytics_output_eventhub.html.markdown +++ b/website/docs/r/stream_analytics_output_eventhub.html.markdown @@ -104,7 +104,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output EventHub. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Output EventHub. diff --git a/website/docs/r/stream_analytics_output_function.html.markdown b/website/docs/r/stream_analytics_output_function.html.markdown index 4cddf9dbfcaf..55f2f8409b59 100644 --- a/website/docs/r/stream_analytics_output_function.html.markdown +++ b/website/docs/r/stream_analytics_output_function.html.markdown @@ -102,7 +102,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output Function. * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics Output Function. diff --git a/website/docs/r/stream_analytics_output_mssql.html.markdown b/website/docs/r/stream_analytics_output_mssql.html.markdown index ea5ed70c3088..792f27263d53 100644 --- a/website/docs/r/stream_analytics_output_mssql.html.markdown +++ b/website/docs/r/stream_analytics_output_mssql.html.markdown @@ -86,7 +86,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output Microsoft SQL Server Database. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Output Microsoft SQL Server Database. diff --git a/website/docs/r/stream_analytics_output_powerbi.html.markdown b/website/docs/r/stream_analytics_output_powerbi.html.markdown index b73810ebd7cd..a3577e388726 100644 --- a/website/docs/r/stream_analytics_output_powerbi.html.markdown +++ b/website/docs/r/stream_analytics_output_powerbi.html.markdown @@ -50,7 +50,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output for PowerBI. * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics Output for PowerBI. diff --git a/website/docs/r/stream_analytics_output_servicebus_queue.html.markdown b/website/docs/r/stream_analytics_output_servicebus_queue.html.markdown index 596e56289e0a..3a8d32e3b901 100644 --- a/website/docs/r/stream_analytics_output_servicebus_queue.html.markdown +++ b/website/docs/r/stream_analytics_output_servicebus_queue.html.markdown @@ -104,7 +104,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output ServiceBus Queue. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Output ServiceBus Queue. diff --git a/website/docs/r/stream_analytics_output_servicebus_topic.html.markdown b/website/docs/r/stream_analytics_output_servicebus_topic.html.markdown index 5237521743e0..0063d42e1626 100644 --- a/website/docs/r/stream_analytics_output_servicebus_topic.html.markdown +++ b/website/docs/r/stream_analytics_output_servicebus_topic.html.markdown @@ -105,7 +105,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output ServiceBus Topic. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Output ServiceBus Topic. diff --git a/website/docs/r/stream_analytics_output_synapse.html.markdown b/website/docs/r/stream_analytics_output_synapse.html.markdown index 5f94f0716cc6..ba0f168699d9 100644 --- a/website/docs/r/stream_analytics_output_synapse.html.markdown +++ b/website/docs/r/stream_analytics_output_synapse.html.markdown @@ -92,7 +92,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Output to an Azure Synapse Analytics Workspace. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Output to an Azure Synapse Analytics Workspace. diff --git a/website/docs/r/stream_analytics_output_table.html.markdown b/website/docs/r/stream_analytics_output_table.html.markdown index 773349a5c459..64860bd9551b 100644 --- a/website/docs/r/stream_analytics_output_table.html.markdown +++ b/website/docs/r/stream_analytics_output_table.html.markdown @@ -81,7 +81,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics. * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics. diff --git a/website/docs/r/stream_analytics_reference_input_blob.html.markdown b/website/docs/r/stream_analytics_reference_input_blob.html.markdown index 4e4b61849646..c9ea143d0915 100644 --- a/website/docs/r/stream_analytics_reference_input_blob.html.markdown +++ b/website/docs/r/stream_analytics_reference_input_blob.html.markdown @@ -101,7 +101,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Reference Input Blob. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Reference Input Blob. diff --git a/website/docs/r/stream_analytics_reference_input_mssql.html.markdown b/website/docs/r/stream_analytics_reference_input_mssql.html.markdown index f817af6e6682..e9976322b3f0 100644 --- a/website/docs/r/stream_analytics_reference_input_mssql.html.markdown +++ b/website/docs/r/stream_analytics_reference_input_mssql.html.markdown @@ -90,7 +90,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics. * `read` - (Defaults to 5 minutes) Used when retrieving the Stream Analytics. diff --git a/website/docs/r/stream_analytics_stream_input_blob.html.markdown b/website/docs/r/stream_analytics_stream_input_blob.html.markdown index b7635666b72c..330b5fe06e8d 100644 --- a/website/docs/r/stream_analytics_stream_input_blob.html.markdown +++ b/website/docs/r/stream_analytics_stream_input_blob.html.markdown @@ -101,7 +101,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Stream Input Blob. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Stream Input Blob. diff --git a/website/docs/r/stream_analytics_stream_input_eventhub.html.markdown b/website/docs/r/stream_analytics_stream_input_eventhub.html.markdown index f80352c9c23e..db2b5b3d333d 100644 --- a/website/docs/r/stream_analytics_stream_input_eventhub.html.markdown +++ b/website/docs/r/stream_analytics_stream_input_eventhub.html.markdown @@ -111,7 +111,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Stream Input EventHub. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Stream Input EventHub. diff --git a/website/docs/r/stream_analytics_stream_input_iothub.html.markdown b/website/docs/r/stream_analytics_stream_input_iothub.html.markdown index c2cc2ffa1b22..d4d26d5ab8ad 100644 --- a/website/docs/r/stream_analytics_stream_input_iothub.html.markdown +++ b/website/docs/r/stream_analytics_stream_input_iothub.html.markdown @@ -95,7 +95,7 @@ The following attributes are exported in addition to the arguments listed above: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Stream Analytics Stream Input IoTHub. * `update` - (Defaults to 30 minutes) Used when updating the Stream Analytics Stream Input IoTHub. diff --git a/website/docs/r/subnet.html.markdown b/website/docs/r/subnet.html.markdown index bcbba3481f85..1ae4e7397f14 100644 --- a/website/docs/r/subnet.html.markdown +++ b/website/docs/r/subnet.html.markdown @@ -110,7 +110,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subnet. * `update` - (Defaults to 30 minutes) Used when updating the Subnet. diff --git a/website/docs/r/subnet_nat_gateway_association.html.markdown b/website/docs/r/subnet_nat_gateway_association.html.markdown index 45cf6226da54..cb218dfd8311 100644 --- a/website/docs/r/subnet_nat_gateway_association.html.markdown +++ b/website/docs/r/subnet_nat_gateway_association.html.markdown @@ -60,7 +60,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subnet NAT Gateway Association. * `update` - (Defaults to 30 minutes) Used when updating the Subnet NAT Gateway Association. diff --git a/website/docs/r/subnet_network_security_group_association.html.markdown b/website/docs/r/subnet_network_security_group_association.html.markdown index a829d98a8e33..f40db8c6d053 100644 --- a/website/docs/r/subnet_network_security_group_association.html.markdown +++ b/website/docs/r/subnet_network_security_group_association.html.markdown @@ -73,7 +73,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subnet Network Security Group Association. * `update` - (Defaults to 30 minutes) Used when updating the Subnet Network Security Group Association. diff --git a/website/docs/r/subnet_route_table_association.html.markdown b/website/docs/r/subnet_route_table_association.html.markdown index 9f9ad97b1377..f3a596498080 100644 --- a/website/docs/r/subnet_route_table_association.html.markdown +++ b/website/docs/r/subnet_route_table_association.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subnet Route Table Association. * `update` - (Defaults to 30 minutes) Used when updating the Subnet Route Table Association. diff --git a/website/docs/r/subnet_service_endpoint_storage_policy.html.markdown b/website/docs/r/subnet_service_endpoint_storage_policy.html.markdown index b88fc27215b3..36583ef0adb5 100644 --- a/website/docs/r/subnet_service_endpoint_storage_policy.html.markdown +++ b/website/docs/r/subnet_service_endpoint_storage_policy.html.markdown @@ -77,7 +77,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subnet Service Endpoint Storage Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the Subnet Service Endpoint Storage Policy. diff --git a/website/docs/r/subscription.html.markdown b/website/docs/r/subscription.html.markdown index e24f0dfd79bf..20b58b862dc2 100644 --- a/website/docs/r/subscription.html.markdown +++ b/website/docs/r/subscription.html.markdown @@ -101,7 +101,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subscription. * `read` - (Defaults to 5 minutes) Used when retrieving the Subscription. diff --git a/website/docs/r/subscription_cost_management_export.html.markdown b/website/docs/r/subscription_cost_management_export.html.markdown index 8c8e9effdee7..a15ae5915967 100644 --- a/website/docs/r/subscription_cost_management_export.html.markdown +++ b/website/docs/r/subscription_cost_management_export.html.markdown @@ -99,7 +99,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Subscription Cost Management Export. * `read` - (Defaults to 5 minutes) Used when retrieving the Subscription Cost Management Export. diff --git a/website/docs/r/subscription_policy_assignment.html.markdown b/website/docs/r/subscription_policy_assignment.html.markdown index ee692912f298..24d1e7ab9ad6 100644 --- a/website/docs/r/subscription_policy_assignment.html.markdown +++ b/website/docs/r/subscription_policy_assignment.html.markdown @@ -109,7 +109,7 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Assignment for this Subscription. * `read` - (Defaults to 5 minutes) Used when retrieving the Policy Assignment for this Subscription. diff --git a/website/docs/r/subscription_policy_exemption.html.markdown b/website/docs/r/subscription_policy_exemption.html.markdown index b7022584d0c7..430e59877e4f 100644 --- a/website/docs/r/subscription_policy_exemption.html.markdown +++ b/website/docs/r/subscription_policy_exemption.html.markdown @@ -68,7 +68,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Exemption. * `update` - (Defaults to 30 minutes) Used when updating the Policy Exemption. diff --git a/website/docs/r/subscription_policy_remediation.html.markdown b/website/docs/r/subscription_policy_remediation.html.markdown index 956950ca9be4..bf395ac63796 100644 --- a/website/docs/r/subscription_policy_remediation.html.markdown +++ b/website/docs/r/subscription_policy_remediation.html.markdown @@ -61,7 +61,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Policy Remediation. * `update` - (Defaults to 30 minutes) Used when updating the Policy Remediation. diff --git a/website/docs/r/subscription_template_deployment.html.markdown b/website/docs/r/subscription_template_deployment.html.markdown index 6e8a6687d31b..c38f77a653ef 100644 --- a/website/docs/r/subscription_template_deployment.html.markdown +++ b/website/docs/r/subscription_template_deployment.html.markdown @@ -69,7 +69,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 3 hours) Used when creating the Subscription Template Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Subscription Template Deployment. diff --git a/website/docs/r/synapse_firewall_rule.html.markdown b/website/docs/r/synapse_firewall_rule.html.markdown index ccedfdc3a6d8..18cf87a0e82b 100644 --- a/website/docs/r/synapse_firewall_rule.html.markdown +++ b/website/docs/r/synapse_firewall_rule.html.markdown @@ -77,7 +77,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Firewall Rule. * `update` - (Defaults to 30 minutes) Used when updating the Synapse Firewall Rule. diff --git a/website/docs/r/synapse_integration_runtime_azure.html.markdown b/website/docs/r/synapse_integration_runtime_azure.html.markdown index 9456479e5335..d7b970c1cd4d 100644 --- a/website/docs/r/synapse_integration_runtime_azure.html.markdown +++ b/website/docs/r/synapse_integration_runtime_azure.html.markdown @@ -95,7 +95,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Azure Integration Runtime. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Azure Integration Runtime. diff --git a/website/docs/r/synapse_integration_runtime_self_hosted.html.markdown b/website/docs/r/synapse_integration_runtime_self_hosted.html.markdown index 82645766b41c..f04fb0a4f722 100644 --- a/website/docs/r/synapse_integration_runtime_self_hosted.html.markdown +++ b/website/docs/r/synapse_integration_runtime_self_hosted.html.markdown @@ -89,7 +89,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Self-hosted Integration Runtime. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Self-hosted Integration Runtime. diff --git a/website/docs/r/synapse_linked_service.html.markdown b/website/docs/r/synapse_linked_service.html.markdown index 4977d7a36f8c..e10fb37808c9 100644 --- a/website/docs/r/synapse_linked_service.html.markdown +++ b/website/docs/r/synapse_linked_service.html.markdown @@ -111,7 +111,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Linked Service. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Linked Service. diff --git a/website/docs/r/synapse_managed_private_endpoint.html.markdown b/website/docs/r/synapse_managed_private_endpoint.html.markdown index ae6b4f0377a0..1d837b55f0e0 100644 --- a/website/docs/r/synapse_managed_private_endpoint.html.markdown +++ b/website/docs/r/synapse_managed_private_endpoint.html.markdown @@ -97,7 +97,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Managed Private Endpoint. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Managed Private Endpoint. diff --git a/website/docs/r/synapse_private_link_hub.html.markdown b/website/docs/r/synapse_private_link_hub.html.markdown index fc23d258c80b..c7922338b440 100644 --- a/website/docs/r/synapse_private_link_hub.html.markdown +++ b/website/docs/r/synapse_private_link_hub.html.markdown @@ -40,7 +40,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Private Link Hub. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Private Link Hub. diff --git a/website/docs/r/synapse_role_assignment.html.markdown b/website/docs/r/synapse_role_assignment.html.markdown index c43f581e9364..a2ac9fb9fa9a 100644 --- a/website/docs/r/synapse_role_assignment.html.markdown +++ b/website/docs/r/synapse_role_assignment.html.markdown @@ -90,7 +90,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Role Assignment. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Role Assignment. diff --git a/website/docs/r/synapse_spark_pool.html.markdown b/website/docs/r/synapse_spark_pool.html.markdown index 054f451dc5a3..fd42c06744a7 100644 --- a/website/docs/r/synapse_spark_pool.html.markdown +++ b/website/docs/r/synapse_spark_pool.html.markdown @@ -161,7 +161,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Spark Pool. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Spark Pool. diff --git a/website/docs/r/synapse_sql_pool.html.markdown b/website/docs/r/synapse_sql_pool.html.markdown index dfd462371b6d..23122fb7b4b7 100644 --- a/website/docs/r/synapse_sql_pool.html.markdown +++ b/website/docs/r/synapse_sql_pool.html.markdown @@ -91,7 +91,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse SQL Pool. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse SQL Pool. diff --git a/website/docs/r/synapse_sql_pool_extended_auditing_policy.html.markdown b/website/docs/r/synapse_sql_pool_extended_auditing_policy.html.markdown index cd7d85572530..8ab6e274e04c 100644 --- a/website/docs/r/synapse_sql_pool_extended_auditing_policy.html.markdown +++ b/website/docs/r/synapse_sql_pool_extended_auditing_policy.html.markdown @@ -93,7 +93,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse SQL Pool Extended Auditing Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse SQL Pool Extended Auditing Policy. diff --git a/website/docs/r/synapse_sql_pool_security_alert_policy.html.markdown b/website/docs/r/synapse_sql_pool_security_alert_policy.html.markdown index ac5e0700ff25..50930f430deb 100644 --- a/website/docs/r/synapse_sql_pool_security_alert_policy.html.markdown +++ b/website/docs/r/synapse_sql_pool_security_alert_policy.html.markdown @@ -114,7 +114,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse SQL Pool Security Alert Policy. * `update` - (Defaults to 30 minutes) Used when updating the Synapse SQL Pool Security Alert Policy. diff --git a/website/docs/r/synapse_sql_pool_vulnerability_assessment.html.markdown b/website/docs/r/synapse_sql_pool_vulnerability_assessment.html.markdown index 1e262fb2f0eb..9687ac1f94e4 100644 --- a/website/docs/r/synapse_sql_pool_vulnerability_assessment.html.markdown +++ b/website/docs/r/synapse_sql_pool_vulnerability_assessment.html.markdown @@ -135,7 +135,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse SQL Pool Vulnerability Assessment. * `update` - (Defaults to 30 minutes) Used when updating the Synapse SQL Pool Vulnerability Assessment. diff --git a/website/docs/r/synapse_sql_pool_vulnerability_assessment_baseline.html.markdown b/website/docs/r/synapse_sql_pool_vulnerability_assessment_baseline.html.markdown index 52def4b0b69c..48058bff7f4e 100644 --- a/website/docs/r/synapse_sql_pool_vulnerability_assessment_baseline.html.markdown +++ b/website/docs/r/synapse_sql_pool_vulnerability_assessment_baseline.html.markdown @@ -116,7 +116,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse SQL Pool Vulnerability Assessment Rule Baseline. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse SQL Pool Vulnerability Assessment Rule Baseline. diff --git a/website/docs/r/synapse_sql_pool_workload_classifier.html.markdown b/website/docs/r/synapse_sql_pool_workload_classifier.html.markdown index 671488fe80bf..382f1f35e975 100644 --- a/website/docs/r/synapse_sql_pool_workload_classifier.html.markdown +++ b/website/docs/r/synapse_sql_pool_workload_classifier.html.markdown @@ -110,7 +110,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse SQL Pool Workload Classifier. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse SQL Pool Workload Classifier. diff --git a/website/docs/r/synapse_sql_pool_workload_group.html.markdown b/website/docs/r/synapse_sql_pool_workload_group.html.markdown index 5319a60befb4..7afd11c751ba 100644 --- a/website/docs/r/synapse_sql_pool_workload_group.html.markdown +++ b/website/docs/r/synapse_sql_pool_workload_group.html.markdown @@ -98,7 +98,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse SQL Pool Workload Group. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse SQL Pool Workload Group. diff --git a/website/docs/r/synapse_workspace.html.markdown b/website/docs/r/synapse_workspace.html.markdown index c771d5b2e617..2e9ebff800d7 100644 --- a/website/docs/r/synapse_workspace.html.markdown +++ b/website/docs/r/synapse_workspace.html.markdown @@ -301,7 +301,7 @@ The `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Workspace. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Workspace. diff --git a/website/docs/r/synapse_workspace_aad_admin.html.markdown b/website/docs/r/synapse_workspace_aad_admin.html.markdown index def26f6fdfd8..a07092eb7f8d 100644 --- a/website/docs/r/synapse_workspace_aad_admin.html.markdown +++ b/website/docs/r/synapse_workspace_aad_admin.html.markdown @@ -107,7 +107,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Workspace. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Workspace. diff --git a/website/docs/r/synapse_workspace_extended_auditing_policy.html.markdown b/website/docs/r/synapse_workspace_extended_auditing_policy.html.markdown index 7ac701371367..407dc1ea02cc 100644 --- a/website/docs/r/synapse_workspace_extended_auditing_policy.html.markdown +++ b/website/docs/r/synapse_workspace_extended_auditing_policy.html.markdown @@ -86,7 +86,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Workspace Extended Auditing Policy. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Workspace Extended Auditing Policy. diff --git a/website/docs/r/synapse_workspace_key.html.markdown b/website/docs/r/synapse_workspace_key.html.markdown index 2d7b134d9b83..1386c856be9b 100644 --- a/website/docs/r/synapse_workspace_key.html.markdown +++ b/website/docs/r/synapse_workspace_key.html.markdown @@ -128,7 +128,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Workspace. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Workspace. diff --git a/website/docs/r/synapse_workspace_security_alert_policy.html.markdown b/website/docs/r/synapse_workspace_security_alert_policy.html.markdown index 3bb1a4417da6..2c17039daefa 100644 --- a/website/docs/r/synapse_workspace_security_alert_policy.html.markdown +++ b/website/docs/r/synapse_workspace_security_alert_policy.html.markdown @@ -107,7 +107,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Workspace Security Alert Policy. * `update` - (Defaults to 30 minutes) Used when updating the Synapse Workspace Security Alert Policy. diff --git a/website/docs/r/synapse_workspace_sql_aad_admin.html.markdown b/website/docs/r/synapse_workspace_sql_aad_admin.html.markdown index d801fcff67a9..bb436f347781 100644 --- a/website/docs/r/synapse_workspace_sql_aad_admin.html.markdown +++ b/website/docs/r/synapse_workspace_sql_aad_admin.html.markdown @@ -107,7 +107,7 @@ The following arguments are supported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Workspace. * `read` - (Defaults to 5 minutes) Used when retrieving the Synapse Workspace. diff --git a/website/docs/r/synapse_workspace_vulnerability_assessment.html.markdown b/website/docs/r/synapse_workspace_vulnerability_assessment.html.markdown index dff0d084551a..070752e9f972 100644 --- a/website/docs/r/synapse_workspace_vulnerability_assessment.html.markdown +++ b/website/docs/r/synapse_workspace_vulnerability_assessment.html.markdown @@ -128,7 +128,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Synapse Workspace Vulnerability Assessment. * `update` - (Defaults to 30 minutes) Used when updating the Synapse Workspace Vulnerability Assessment. diff --git a/website/docs/r/template_deployment.html.markdown b/website/docs/r/template_deployment.html.markdown index c4d3801e400d..0dc0cc0c00d6 100644 --- a/website/docs/r/template_deployment.html.markdown +++ b/website/docs/r/template_deployment.html.markdown @@ -137,7 +137,7 @@ Terraform does not know about the individual resources created by Azure using a ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 3 hours) Used when creating the Template Deployment. * `update` - (Defaults to 3 hours) Used when updating the Template Deployment. diff --git a/website/docs/r/tenant_template_deployment.html.markdown b/website/docs/r/tenant_template_deployment.html.markdown index ae7a93dc8bf5..fd44235c3ed6 100644 --- a/website/docs/r/tenant_template_deployment.html.markdown +++ b/website/docs/r/tenant_template_deployment.html.markdown @@ -62,7 +62,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 3 hours) Used when creating the Tenant Template Deployment. * `read` - (Defaults to 5 minutes) Used when retrieving the Tenant Template Deployment. diff --git a/website/docs/r/traffic_manager_azure_endpoint.html.markdown b/website/docs/r/traffic_manager_azure_endpoint.html.markdown index 6294f7b92187..abfefe1f328e 100644 --- a/website/docs/r/traffic_manager_azure_endpoint.html.markdown +++ b/website/docs/r/traffic_manager_azure_endpoint.html.markdown @@ -112,7 +112,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Azure Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the Azure Endpoint. diff --git a/website/docs/r/traffic_manager_external_endpoint.html.markdown b/website/docs/r/traffic_manager_external_endpoint.html.markdown index 1816bbaec813..3d1133e2e7fc 100644 --- a/website/docs/r/traffic_manager_external_endpoint.html.markdown +++ b/website/docs/r/traffic_manager_external_endpoint.html.markdown @@ -107,7 +107,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the External Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the External Endpoint. diff --git a/website/docs/r/traffic_manager_nested_endpoint.html.markdown b/website/docs/r/traffic_manager_nested_endpoint.html.markdown index 9af176095243..8a04b342f3e3 100644 --- a/website/docs/r/traffic_manager_nested_endpoint.html.markdown +++ b/website/docs/r/traffic_manager_nested_endpoint.html.markdown @@ -146,7 +146,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Nested Endpoint. * `update` - (Defaults to 30 minutes) Used when updating the Nested Endpoint. diff --git a/website/docs/r/traffic_manager_profile.html.markdown b/website/docs/r/traffic_manager_profile.html.markdown index 018f6af9d7bd..7b7f23876751 100644 --- a/website/docs/r/traffic_manager_profile.html.markdown +++ b/website/docs/r/traffic_manager_profile.html.markdown @@ -122,7 +122,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Traffic Manager Profile. * `update` - (Defaults to 30 minutes) Used when updating the Traffic Manager Profile. diff --git a/website/docs/r/user_assigned_identity.html.markdown b/website/docs/r/user_assigned_identity.html.markdown index b7c6aba204c7..456ff278af7f 100644 --- a/website/docs/r/user_assigned_identity.html.markdown +++ b/website/docs/r/user_assigned_identity.html.markdown @@ -55,7 +55,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the User Assigned Identity. * `update` - (Defaults to 30 minutes) Used when updating the User Assigned Identity. diff --git a/website/docs/r/video_analyzer.html.markdown b/website/docs/r/video_analyzer.html.markdown index 2013dffe2164..51327c4ab1ba 100644 --- a/website/docs/r/video_analyzer.html.markdown +++ b/website/docs/r/video_analyzer.html.markdown @@ -117,7 +117,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Video Analyzer. * `update` - (Defaults to 30 minutes) Used when updating the Video Analyzer. diff --git a/website/docs/r/video_analyzer_edge_module.html.markdown b/website/docs/r/video_analyzer_edge_module.html.markdown index 26d0f872360b..3825c6ac48e8 100644 --- a/website/docs/r/video_analyzer_edge_module.html.markdown +++ b/website/docs/r/video_analyzer_edge_module.html.markdown @@ -102,7 +102,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Video Analyzer Edge Module. * `read` - (Defaults to 5 minutes) Used when retrieving the Video Analyzer Edge Module. diff --git a/website/docs/r/virtual_desktop_application.html.markdown b/website/docs/r/virtual_desktop_application.html.markdown index 4276a1ec0c17..3ee32b05cb91 100644 --- a/website/docs/r/virtual_desktop_application.html.markdown +++ b/website/docs/r/virtual_desktop_application.html.markdown @@ -99,7 +99,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Desktop Application. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Desktop Application. diff --git a/website/docs/r/virtual_desktop_application_group.html.markdown b/website/docs/r/virtual_desktop_application_group.html.markdown index 18d70a236592..e5d051db5018 100644 --- a/website/docs/r/virtual_desktop_application_group.html.markdown +++ b/website/docs/r/virtual_desktop_application_group.html.markdown @@ -99,7 +99,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Desktop Application Group. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Desktop Application Group. diff --git a/website/docs/r/virtual_desktop_host_pool.html.markdown b/website/docs/r/virtual_desktop_host_pool.html.markdown index 6949f5e2d9d5..27045048d569 100644 --- a/website/docs/r/virtual_desktop_host_pool.html.markdown +++ b/website/docs/r/virtual_desktop_host_pool.html.markdown @@ -87,7 +87,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Desktop Application Group. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Desktop Application Group. diff --git a/website/docs/r/virtual_desktop_host_pool_registration_info.html.markdown b/website/docs/r/virtual_desktop_host_pool_registration_info.html.markdown index 9b130af4dd30..b4a0048fde35 100644 --- a/website/docs/r/virtual_desktop_host_pool_registration_info.html.markdown +++ b/website/docs/r/virtual_desktop_host_pool_registration_info.html.markdown @@ -52,7 +52,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the AVD Registration Info. * `read` - (Defaults to 5 minutes) Used when retrieving the AVD Registration Info. diff --git a/website/docs/r/virtual_desktop_scaling_plan.html.markdown b/website/docs/r/virtual_desktop_scaling_plan.html.markdown index 6db918b885ae..cf0e2515f63a 100644 --- a/website/docs/r/virtual_desktop_scaling_plan.html.markdown +++ b/website/docs/r/virtual_desktop_scaling_plan.html.markdown @@ -190,7 +190,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 1 hour) Used when creating the Virtual Desktop Scaling Plan. * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Desktop Scaling Plan. diff --git a/website/docs/r/virtual_desktop_workspace.html.markdown b/website/docs/r/virtual_desktop_workspace.html.markdown index 691c5e073c13..a50b7f345e49 100644 --- a/website/docs/r/virtual_desktop_workspace.html.markdown +++ b/website/docs/r/virtual_desktop_workspace.html.markdown @@ -59,7 +59,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Desktop Workspace. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Desktop Workspace. diff --git a/website/docs/r/virtual_desktop_workspace_application_group_association.html.markdown b/website/docs/r/virtual_desktop_workspace_application_group_association.html.markdown index 2b165af14c3d..ad99cb41ec00 100644 --- a/website/docs/r/virtual_desktop_workspace_application_group_association.html.markdown +++ b/website/docs/r/virtual_desktop_workspace_application_group_association.html.markdown @@ -66,7 +66,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Desktop Workspace. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Desktop Workspace. diff --git a/website/docs/r/virtual_hub.html.markdown b/website/docs/r/virtual_hub.html.markdown index e6f7f53602e9..e01a9ed2d1b6 100644 --- a/website/docs/r/virtual_hub.html.markdown +++ b/website/docs/r/virtual_hub.html.markdown @@ -79,7 +79,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Hub. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Hub. diff --git a/website/docs/r/virtual_hub_bgp_connection.html.markdown b/website/docs/r/virtual_hub_bgp_connection.html.markdown index 8816c437ecd4..74a811aedd4f 100644 --- a/website/docs/r/virtual_hub_bgp_connection.html.markdown +++ b/website/docs/r/virtual_hub_bgp_connection.html.markdown @@ -86,7 +86,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Hub Bgp Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Hub Bgp Connection. diff --git a/website/docs/r/virtual_hub_connection.html.markdown b/website/docs/r/virtual_hub_connection.html.markdown index 4d24f6d8def6..79639e658229 100644 --- a/website/docs/r/virtual_hub_connection.html.markdown +++ b/website/docs/r/virtual_hub_connection.html.markdown @@ -98,7 +98,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Hub Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Hub Connection. diff --git a/website/docs/r/virtual_hub_ip.html.markdown b/website/docs/r/virtual_hub_ip.html.markdown index fab3279f9a4c..42ae8a2dc202 100644 --- a/website/docs/r/virtual_hub_ip.html.markdown +++ b/website/docs/r/virtual_hub_ip.html.markdown @@ -83,7 +83,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Hub IP. * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Hub IP. diff --git a/website/docs/r/virtual_hub_route_table.html.markdown b/website/docs/r/virtual_hub_route_table.html.markdown index ffbd3dfbe607..1ed1df82ef42 100644 --- a/website/docs/r/virtual_hub_route_table.html.markdown +++ b/website/docs/r/virtual_hub_route_table.html.markdown @@ -114,7 +114,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Hub Route Table. * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Hub Route Table. diff --git a/website/docs/r/virtual_hub_route_table_route.html.markdown b/website/docs/r/virtual_hub_route_table_route.html.markdown index a7a00d5863fa..5e468bf425cc 100644 --- a/website/docs/r/virtual_hub_route_table_route.html.markdown +++ b/website/docs/r/virtual_hub_route_table_route.html.markdown @@ -110,7 +110,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Hub Route Table. * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Hub Route Table. diff --git a/website/docs/r/virtual_hub_security_partner_provider.html.markdown b/website/docs/r/virtual_hub_security_partner_provider.html.markdown index fe9b2a81992f..91be3fd2c950 100644 --- a/website/docs/r/virtual_hub_security_partner_provider.html.markdown +++ b/website/docs/r/virtual_hub_security_partner_provider.html.markdown @@ -78,7 +78,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Security Partner Provider. * `read` - (Defaults to 5 minutes) Used when retrieving the Security Partner Provider. diff --git a/website/docs/r/virtual_machine.html.markdown b/website/docs/r/virtual_machine.html.markdown index eb8885401863..57f4a06335d0 100644 --- a/website/docs/r/virtual_machine.html.markdown +++ b/website/docs/r/virtual_machine.html.markdown @@ -410,7 +410,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Machine. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Machine. diff --git a/website/docs/r/virtual_machine_data_disk_attachment.html.markdown b/website/docs/r/virtual_machine_data_disk_attachment.html.markdown index 7ea738abb729..3e52d6a25aeb 100644 --- a/website/docs/r/virtual_machine_data_disk_attachment.html.markdown +++ b/website/docs/r/virtual_machine_data_disk_attachment.html.markdown @@ -129,7 +129,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Machine Data Disk Attachment. * `update` - (Defaults to 30 minutes) Used when updating the Virtual Machine Data Disk Attachment. diff --git a/website/docs/r/virtual_machine_extension.html.markdown b/website/docs/r/virtual_machine_extension.html.markdown index fb29f6396382..428d394efab8 100644 --- a/website/docs/r/virtual_machine_extension.html.markdown +++ b/website/docs/r/virtual_machine_extension.html.markdown @@ -170,7 +170,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Machine Extension. * `update` - (Defaults to 30 minutes) Used when updating the Virtual Machine Extension. diff --git a/website/docs/r/virtual_machine_scale_set.html.markdown b/website/docs/r/virtual_machine_scale_set.html.markdown index 73e986cab16f..5bf3c11b2f8a 100644 --- a/website/docs/r/virtual_machine_scale_set.html.markdown +++ b/website/docs/r/virtual_machine_scale_set.html.markdown @@ -536,7 +536,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Machine Scale Set. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Machine Scale Set. diff --git a/website/docs/r/virtual_machine_scale_set_extension.html.markdown b/website/docs/r/virtual_machine_scale_set_extension.html.markdown index d9fa254e3aa7..a96de5cc2ad0 100644 --- a/website/docs/r/virtual_machine_scale_set_extension.html.markdown +++ b/website/docs/r/virtual_machine_scale_set_extension.html.markdown @@ -102,7 +102,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Machine Scale Set Extension. * `update` - (Defaults to 30 minutes) Used when updating the Virtual Machine Scale Set Extension. diff --git a/website/docs/r/virtual_network.html.markdown b/website/docs/r/virtual_network.html.markdown index a831f8a34540..6674dd6d9a2a 100644 --- a/website/docs/r/virtual_network.html.markdown +++ b/website/docs/r/virtual_network.html.markdown @@ -133,7 +133,7 @@ The `subnet` block exports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Network. * `update` - (Defaults to 30 minutes) Used when updating the Virtual Network. diff --git a/website/docs/r/virtual_network_dns_servers.html.markdown b/website/docs/r/virtual_network_dns_servers.html.markdown index 5ed0d0e7f411..723eb5aff704 100644 --- a/website/docs/r/virtual_network_dns_servers.html.markdown +++ b/website/docs/r/virtual_network_dns_servers.html.markdown @@ -55,7 +55,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Network. * `update` - (Defaults to 30 minutes) Used when updating the Virtual Network. diff --git a/website/docs/r/virtual_network_gateway.html.markdown b/website/docs/r/virtual_network_gateway.html.markdown index 26ac65edf750..019dcd8214d9 100644 --- a/website/docs/r/virtual_network_gateway.html.markdown +++ b/website/docs/r/virtual_network_gateway.html.markdown @@ -295,7 +295,7 @@ The `peering_addresses` supports: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Virtual Network Gateway. * `update` - (Defaults to 60 minutes) Used when updating the Virtual Network Gateway. diff --git a/website/docs/r/virtual_network_gateway_connection.html.markdown b/website/docs/r/virtual_network_gateway_connection.html.markdown index 114332be65a9..62b7163004e9 100644 --- a/website/docs/r/virtual_network_gateway_connection.html.markdown +++ b/website/docs/r/virtual_network_gateway_connection.html.markdown @@ -329,7 +329,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Network Gateway Connection. * `update` - (Defaults to 30 minutes) Used when updating the Virtual Network Gateway Connection. diff --git a/website/docs/r/virtual_network_gateway_nat_rule.html.markdown b/website/docs/r/virtual_network_gateway_nat_rule.html.markdown index 7d670adc7c66..c26a83129edf 100644 --- a/website/docs/r/virtual_network_gateway_nat_rule.html.markdown +++ b/website/docs/r/virtual_network_gateway_nat_rule.html.markdown @@ -126,7 +126,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Network Gateway Nat Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the Virtual Network Gateway Nat Rule. diff --git a/website/docs/r/virtual_network_peering.html.markdown b/website/docs/r/virtual_network_peering.html.markdown index 38622ec05734..22350440c687 100644 --- a/website/docs/r/virtual_network_peering.html.markdown +++ b/website/docs/r/virtual_network_peering.html.markdown @@ -154,7 +154,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual Network Peering. * `update` - (Defaults to 30 minutes) Used when updating the Virtual Network Peering. diff --git a/website/docs/r/virtual_wan.html.markdown b/website/docs/r/virtual_wan.html.markdown index cecca2508d97..71b1f8657efb 100644 --- a/website/docs/r/virtual_wan.html.markdown +++ b/website/docs/r/virtual_wan.html.markdown @@ -54,7 +54,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Virtual WAN. * `update` - (Defaults to 30 minutes) Used when updating the Virtual WAN. diff --git a/website/docs/r/vmware_cluster.html.markdown b/website/docs/r/vmware_cluster.html.markdown index b05c9f19e233..61861b2bbcd7 100644 --- a/website/docs/r/vmware_cluster.html.markdown +++ b/website/docs/r/vmware_cluster.html.markdown @@ -71,7 +71,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 5 hours) Used when creating the VMware Cluster. * `read` - (Defaults to 5 minutes) Used when retrieving the VMware Cluster. diff --git a/website/docs/r/vmware_express_route_authorization.html.markdown b/website/docs/r/vmware_express_route_authorization.html.markdown index e9e5087fcb4c..2e4770895d5a 100644 --- a/website/docs/r/vmware_express_route_authorization.html.markdown +++ b/website/docs/r/vmware_express_route_authorization.html.markdown @@ -65,7 +65,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the VMware Authorization. * `read` - (Defaults to 5 minutes) Used when retrieving the VMware Authorization. diff --git a/website/docs/r/vmware_private_cloud.html.markdown b/website/docs/r/vmware_private_cloud.html.markdown index 6598f62f290d..ab5bc8ebc3e3 100644 --- a/website/docs/r/vmware_private_cloud.html.markdown +++ b/website/docs/r/vmware_private_cloud.html.markdown @@ -120,7 +120,7 @@ A `management_cluster` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 10 hours) Used when creating the VMware Private Cloud. * `read` - (Defaults to 5 minutes) Used when retrieving the VMware Private Cloud. diff --git a/website/docs/r/vpn_gateway.html.markdown b/website/docs/r/vpn_gateway.html.markdown index 5828a03967de..bd1cb970157d 100644 --- a/website/docs/r/vpn_gateway.html.markdown +++ b/website/docs/r/vpn_gateway.html.markdown @@ -120,7 +120,7 @@ A `instance_bgp_peering_address` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the VPN Gateway. * `update` - (Defaults to 90 minutes) Used when updating the VPN Gateway. diff --git a/website/docs/r/vpn_gateway_connection.html.markdown b/website/docs/r/vpn_gateway_connection.html.markdown index 28b729a9797d..bebe032855a5 100644 --- a/website/docs/r/vpn_gateway_connection.html.markdown +++ b/website/docs/r/vpn_gateway_connection.html.markdown @@ -183,7 +183,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the VPN Gateway Connection. * `read` - (Defaults to 5 minutes) Used when retrieving the VPN Gateway Connection. diff --git a/website/docs/r/vpn_gateway_nat_rule.html.markdown b/website/docs/r/vpn_gateway_nat_rule.html.markdown index 8d1e06683239..035680bbbdcb 100644 --- a/website/docs/r/vpn_gateway_nat_rule.html.markdown +++ b/website/docs/r/vpn_gateway_nat_rule.html.markdown @@ -106,7 +106,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the VPN Gateway NAT Rule. * `read` - (Defaults to 5 minutes) Used when retrieving the VPN Gateway NAT Rule. diff --git a/website/docs/r/vpn_server_configuration.html.markdown b/website/docs/r/vpn_server_configuration.html.markdown index 7a32fe8dfd12..e4f8a91bbb93 100644 --- a/website/docs/r/vpn_server_configuration.html.markdown +++ b/website/docs/r/vpn_server_configuration.html.markdown @@ -195,7 +195,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 90 minutes) Used when creating the VPN Server Configuration. * `update` - (Defaults to 90 minutes) Used when updating the VPN Server Configuration. diff --git a/website/docs/r/vpn_server_configuration_policy_group.html.markdown b/website/docs/r/vpn_server_configuration_policy_group.html.markdown index 54e7a7ca77e3..469d6be0345c 100644 --- a/website/docs/r/vpn_server_configuration_policy_group.html.markdown +++ b/website/docs/r/vpn_server_configuration_policy_group.html.markdown @@ -77,7 +77,7 @@ In addition to the arguments above, the following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the VPN Server Configuration Policy Group. * `update` - (Defaults to 30 minutes) Used when updating the VPN Server Configuration Policy Group. diff --git a/website/docs/r/vpn_site.html.markdown b/website/docs/r/vpn_site.html.markdown index 25f17e70090d..c17531debaef 100644 --- a/website/docs/r/vpn_site.html.markdown +++ b/website/docs/r/vpn_site.html.markdown @@ -130,7 +130,7 @@ A `link` block supports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the VPN Site. * `read` - (Defaults to 5 minutes) Used when retrieving the VPN Site. diff --git a/website/docs/r/web_app_active_slot.html.markdown b/website/docs/r/web_app_active_slot.html.markdown index df3b7ef31ea5..f0dad6978a0b 100644 --- a/website/docs/r/web_app_active_slot.html.markdown +++ b/website/docs/r/web_app_active_slot.html.markdown @@ -119,7 +119,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Web App Active Slot. * `update` - (Defaults to 30 minutes) Used when updating the Web App Active Slot. diff --git a/website/docs/r/web_app_hybrid_connection.html.markdown b/website/docs/r/web_app_hybrid_connection.html.markdown index 1993930e05dd..1fd03361e8b7 100644 --- a/website/docs/r/web_app_hybrid_connection.html.markdown +++ b/website/docs/r/web_app_hybrid_connection.html.markdown @@ -95,7 +95,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Web App Hybrid Connection. * `update` - (Defaults to 30 minutes) Used when updating the Web App Hybrid Connection. diff --git a/website/docs/r/web_application_firewall_policy.html.markdown b/website/docs/r/web_application_firewall_policy.html.markdown index 28c6460310e8..16acce76d56e 100644 --- a/website/docs/r/web_application_firewall_policy.html.markdown +++ b/website/docs/r/web_application_firewall_policy.html.markdown @@ -222,7 +222,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Web Application Firewall Policy. * `update` - (Defaults to 30 minutes) Used when updating the Web Application Firewall Policy. diff --git a/website/docs/r/web_pubsub.html.markdown b/website/docs/r/web_pubsub.html.markdown index 1e55b3888e56..ac6fdfcd0ceb 100644 --- a/website/docs/r/web_pubsub.html.markdown +++ b/website/docs/r/web_pubsub.html.markdown @@ -129,7 +129,7 @@ An `identity` block exports the following: ## Timeouts The `timeouts` block allows you to -specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Web PubSub Service. * `update` - (Defaults to 30 minutes) Used when updating the Web PubSub Service. diff --git a/website/docs/r/web_pubsub_hub.html.markdown b/website/docs/r/web_pubsub_hub.html.markdown index 469784cebd9c..16d6a5065896 100644 --- a/website/docs/r/web_pubsub_hub.html.markdown +++ b/website/docs/r/web_pubsub_hub.html.markdown @@ -107,7 +107,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Web Pubsub Resource. * `update` - (Defaults to 30 minutes) Used when updating the Web Pubsub Resource. diff --git a/website/docs/r/web_pubsub_network_acl.html.markdown b/website/docs/r/web_pubsub_network_acl.html.markdown index e8b77bfd4059..38a019277518 100644 --- a/website/docs/r/web_pubsub_network_acl.html.markdown +++ b/website/docs/r/web_pubsub_network_acl.html.markdown @@ -117,7 +117,7 @@ In addition to the Arguments listed above - the following Attributes are exporte ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Network ACL of the Web Pubsub service * `read` - (Defaults to 5 minutes) Used when retrieving the Network ACL of the Web Pubsub service diff --git a/website/docs/r/web_pubsub_shared_private_link.html.markdown b/website/docs/r/web_pubsub_shared_private_link.html.markdown index f5b0d5862f69..2a043503d6f2 100644 --- a/website/docs/r/web_pubsub_shared_private_link.html.markdown +++ b/website/docs/r/web_pubsub_shared_private_link.html.markdown @@ -90,7 +90,7 @@ The following attributes are exported: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Web Pubsub Shared Private Link Resource. * `update` - (Defaults to 30 minutes) Used when updating the Web Pubsub Shared Private Link Resource. diff --git a/website/docs/r/windows_function_app.html.markdown b/website/docs/r/windows_function_app.html.markdown index 039caa1feefa..04a3d630c3d0 100644 --- a/website/docs/r/windows_function_app.html.markdown +++ b/website/docs/r/windows_function_app.html.markdown @@ -483,7 +483,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Windows Function App. * `read` - (Defaults to 5 minutes) Used when retrieving the Windows Function App. diff --git a/website/docs/r/windows_function_app_slot.html.markdown b/website/docs/r/windows_function_app_slot.html.markdown index 4109169aa133..aace4d7dffd0 100644 --- a/website/docs/r/windows_function_app_slot.html.markdown +++ b/website/docs/r/windows_function_app_slot.html.markdown @@ -492,7 +492,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Windows Function App Slot. * `update` - (Defaults to 30 minutes) Used when updating the Windows Function App Slot. diff --git a/website/docs/r/windows_virtual_machine.html.markdown b/website/docs/r/windows_virtual_machine.html.markdown index 22726a2b3f3e..81f980d08777 100644 --- a/website/docs/r/windows_virtual_machine.html.markdown +++ b/website/docs/r/windows_virtual_machine.html.markdown @@ -365,7 +365,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 45 minutes) Used when creating the Windows Virtual Machine. * `update` - (Defaults to 45 minutes) Used when updating the Windows Virtual Machine. diff --git a/website/docs/r/windows_virtual_machine_scale_set.html.markdown b/website/docs/r/windows_virtual_machine_scale_set.html.markdown index 9d2d2b7adf23..a31867b5a995 100644 --- a/website/docs/r/windows_virtual_machine_scale_set.html.markdown +++ b/website/docs/r/windows_virtual_machine_scale_set.html.markdown @@ -98,7 +98,7 @@ The following arguments are supported: * `instances` - (Required) The number of Virtual Machines in the Scale Set. --> **NOTE:** If you're using AutoScaling, you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/docs/configuration/resources.html#ignore_changes) to ignore changes to this field. +-> **NOTE:** If you're using AutoScaling, you may wish to use [Terraform's `ignore_changes` functionality](https://www.terraform.io/language/meta-arguments/lifecycle#ignore_changess) to ignore changes to this field. * `sku` - (Required) The Virtual Machine SKU for the Scale Set, such as `Standard_F2`. @@ -548,7 +548,7 @@ An `identity` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 60 minutes) Used when creating the Windows Virtual Machine Scale Set. * `read` - (Defaults to 5 minutes) Used when reading the Windows Virtual Machine Scale Set. diff --git a/website/docs/r/windows_web_app.html.markdown b/website/docs/r/windows_web_app.html.markdown index 32026ea8541c..c125521ae2e8 100644 --- a/website/docs/r/windows_web_app.html.markdown +++ b/website/docs/r/windows_web_app.html.markdown @@ -622,7 +622,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Windows Web App. * `read` - (Defaults to 5 minutes) Used when retrieving the Windows Web App. diff --git a/website/docs/r/windows_web_app_slot.html.markdown b/website/docs/r/windows_web_app_slot.html.markdown index 48374fbbeb4c..9145b5aed0aa 100644 --- a/website/docs/r/windows_web_app_slot.html.markdown +++ b/website/docs/r/windows_web_app_slot.html.markdown @@ -622,7 +622,7 @@ A `site_credential` block exports the following: ## Timeouts -The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/docs/configuration/resources.html#timeouts) for certain actions: +The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/language/resources/syntax#operation-timeouts) for certain actions: * `create` - (Defaults to 30 minutes) Used when creating the Windows Web App Slot. * `read` - (Defaults to 5 minutes) Used when retrieving the Windows Web App Slot.