Skip to content

Commit b879731

Browse files
committed
add
1 parent cce4fd1 commit b879731

3 files changed

+50
-4
lines changed

tencentcloud/services/ssl/resource_tc_ssl_check_certificate_domain_verification_operation.go

Lines changed: 18 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
11
Provides a resource to create a ssl Check Certificate Domain Verification
22

3+
~> **NOTE:** You can customize the maximum timeout time by setting parameter `timeouts`, which defaults to 15 minutes.
4+
35
Example Usage
46

7+
Check certificate domain
8+
59
```hcl
610
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
711
certificate_id = "6BE701Jx"
812
}
913
```
14+
15+
Check certificate domain and set the maximum timeout period
16+
17+
```hcl
18+
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
19+
certificate_id = "6BE701Jx"
20+
21+
timeouts {
22+
create = "30m"
23+
}
24+
}
25+
```

website/docs/r/ssl_check_certificate_domain_verification_operation.html.markdown

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,27 @@ description: |-
1111

1212
Provides a resource to create a ssl Check Certificate Domain Verification
1313

14+
~> **NOTE:** You can customize the maximum timeout time by setting parameter `timeouts`, which defaults to 15 minutes.
15+
1416
## Example Usage
1517

18+
### Check certificate domain
19+
20+
```hcl
21+
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
22+
certificate_id = "6BE701Jx"
23+
}
24+
```
25+
26+
### Check certificate domain and set the maximum timeout period
27+
1628
```hcl
1729
resource "tencentcloud_ssl_check_certificate_domain_verification_operation" "example" {
1830
certificate_id = "6BE701Jx"
31+
32+
timeouts {
33+
create = "30m"
34+
}
1935
}
2036
```
2137

0 commit comments

Comments
 (0)