Skip to content

fix(ssl): [119948410] Add retry and customize the maximum timeout for tencentcloud_ssl_check_certificate_domain_verification_operation #2936

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/2936.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/tencentcloud_ssl_check_certificate_domain_verification_operation: Add retry and customize the maximum timeout
```

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
Provides a resource to create a ssl Check Certificate Domain Verification

~> **NOTE:** You can customize the maximum timeout time by setting parameter `timeouts`, which defaults to 15 minutes.

Example Usage

Check certificate domain

```hcl
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
certificate_id = "6BE701Jx"
}
```

Check certificate domain and set the maximum timeout period

```hcl
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
certificate_id = "6BE701Jx"

timeouts {
create = "30m"
}
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,27 @@ description: |-

Provides a resource to create a ssl Check Certificate Domain Verification

~> **NOTE:** You can customize the maximum timeout time by setting parameter `timeouts`, which defaults to 15 minutes.

## Example Usage

### Check certificate domain

```hcl
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
certificate_id = "6BE701Jx"
}
```

### Check certificate domain and set the maximum timeout period

```hcl
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
certificate_id = "6BE701Jx"

timeouts {
create = "30m"
}
}
```

Expand Down
Loading