Skip to content

Commit

Permalink
Docs: point timeouts, operation-timeouts and lifecycle links to…
Browse files Browse the repository at this point in the history
… their new place (#17819)

* Docs: point `timeouts` and `operation-timeouts` links to their new place

Signed-off-by: Gergő Rubint <[email protected]>

* Docs: point `lifecycle` links to their new place

Signed-off-by: Gergő Rubint <[email protected]>
  • Loading branch information
Gergő Rubint authored Aug 2, 2022
1 parent c379aa6 commit 2daadb0
Show file tree
Hide file tree
Showing 1,064 changed files with 1,073 additions and 1,073 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion contributing/topics/guide-new-data-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```
Expand Down
2 changes: 1 addition & 1 deletion contributing/topics/guide-new-resource.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/app-service/docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
2 changes: 1 addition & 1 deletion examples/app-service/docker-kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
2 changes: 1 addition & 1 deletion internal/tools/website-scaffold/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()))
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/aadb2c_directory.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/advisor_recommendations.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/api_management.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/api_management_api.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/api_management_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/api_management_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/api_management_product.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/api_management_user.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_configuration.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_configuration_key.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_configuration_keys.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_service_certificate.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_service_certificate_order.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_service_environment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_service_environment_v3.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/app_service_plan.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/application_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/application_insights.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/application_security_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/attestation.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/automation_account.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/automation_variable_bool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/automation_variable_datetime.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/automation_variable_int.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/automation_variable_string.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/availability_set.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/backup_policy_file_share.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/backup_policy_vm.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/batch_account.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/batch_application.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion website/docs/d/batch_certificate.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading

0 comments on commit 2daadb0

Please sign in to comment.