Skip to content

Commit 77e9e80

Browse files
committed
feat(teo): [119900086] support teo security ip group
1 parent 47db7b1 commit 77e9e80

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

tencentcloud/provider.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1491,6 +1491,7 @@ tencentcloud_teo_function_rule_priority
14911491
tencentcloud_teo_function_runtime_environment
14921492
tencentcloud_teo_l7_acc_rule
14931493
tencentcloud_teo_l7_acc_setting
1494+
tencentcloud_teo_security_ip_group
14941495

14951496
TencentCloud ServiceMesh(TCM)
14961497
Data Source
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
subcategory: "TencentCloud EdgeOne(TEO)"
3+
layout: "tencentcloud"
4+
page_title: "TencentCloud: tencentcloud_teo_security_ip_group"
5+
sidebar_current: "docs-tencentcloud-resource-teo_security_ip_group"
6+
description: |-
7+
Provides a resource to create a teo teo_security_ip_group
8+
---
9+
10+
# tencentcloud_teo_security_ip_group
11+
12+
Provides a resource to create a teo teo_security_ip_group
13+
14+
## Example Usage
15+
16+
```hcl
17+
resource "tencentcloud_teo_security_ip_group" "teo_security_ip_group" {
18+
zone_id = "zone-2qtuhspy7cr6"
19+
ip_group {
20+
content = [
21+
"10.1.1.1",
22+
"10.1.1.2",
23+
"10.1.1.3",
24+
]
25+
name = "bbbbb"
26+
}
27+
}
28+
```
29+
30+
## Argument Reference
31+
32+
The following arguments are supported:
33+
34+
* `ip_group` - (Required, List) IP group information, replace all when modifying.
35+
* `zone_id` - (Required, String) Site ID.
36+
37+
The `ip_group` object supports the following:
38+
39+
* `content` - (Required, Set) IP group content. Only supports IP and IP mask.
40+
* `name` - (Required, String) Group name.
41+
42+
## Attributes Reference
43+
44+
In addition to all arguments above, the following attributes are exported:
45+
46+
* `id` - ID of the resource.
47+
48+
49+
50+
## Import
51+
52+
teo teo_security_ip_group can be imported using the id, e.g.
53+
54+
```
55+
terraform import tencentcloud_teo_security_ip_group.teo_security_ip_group zone_id#group_id
56+
```
57+

website/tencentcloud.erb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5273,6 +5273,9 @@
52735273
<li>
52745274
<a href="/docs/providers/tencentcloud/r/teo_rule_engine.html">tencentcloud_teo_rule_engine</a>
52755275
</li>
5276+
<li>
5277+
<a href="/docs/providers/tencentcloud/r/teo_security_ip_group.html">tencentcloud_teo_security_ip_group</a>
5278+
</li>
52765279
<li>
52775280
<a href="/docs/providers/tencentcloud/r/teo_zone.html">tencentcloud_teo_zone</a>
52785281
</li>

0 commit comments

Comments
 (0)