Skip to content

feat(teo): [119900086] support teo security ip group #3243

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
Mar 26, 2025
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/3243.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
tencentcloud_teo_security_ip_group
```
1 change: 1 addition & 0 deletions tencentcloud/provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -1491,6 +1491,7 @@ tencentcloud_teo_function_rule_priority
tencentcloud_teo_function_runtime_environment
tencentcloud_teo_l7_acc_rule
tencentcloud_teo_l7_acc_setting
tencentcloud_teo_security_ip_group

TencentCloud ServiceMesh(TCM)
Data Source
Expand Down
57 changes: 57 additions & 0 deletions website/docs/r/teo_security_ip_group.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
subcategory: "TencentCloud EdgeOne(TEO)"
layout: "tencentcloud"
page_title: "TencentCloud: tencentcloud_teo_security_ip_group"
sidebar_current: "docs-tencentcloud-resource-teo_security_ip_group"
description: |-
Provides a resource to create a teo teo_security_ip_group
---

# tencentcloud_teo_security_ip_group

Provides a resource to create a teo teo_security_ip_group

## Example Usage

```hcl
resource "tencentcloud_teo_security_ip_group" "teo_security_ip_group" {
zone_id = "zone-2qtuhspy7cr6"
ip_group {
content = [
"10.1.1.1",
"10.1.1.2",
"10.1.1.3",
]
name = "bbbbb"
}
}
```

## Argument Reference

The following arguments are supported:

* `ip_group` - (Required, List) IP group information, replace all when modifying.
* `zone_id` - (Required, String) Site ID.

The `ip_group` object supports the following:

* `content` - (Required, Set) IP group content. Only supports IP and IP mask.
* `name` - (Required, String) Group name.

## Attributes Reference

In addition to all arguments above, the following attributes are exported:

* `id` - ID of the resource.



## Import

teo teo_security_ip_group can be imported using the id, e.g.

```
terraform import tencentcloud_teo_security_ip_group.teo_security_ip_group zone_id#group_id
```

3 changes: 3 additions & 0 deletions website/tencentcloud.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5273,6 +5273,9 @@
<li>
<a href="/docs/providers/tencentcloud/r/teo_rule_engine.html">tencentcloud_teo_rule_engine</a>
</li>
<li>
<a href="/docs/providers/tencentcloud/r/teo_security_ip_group.html">tencentcloud_teo_security_ip_group</a>
</li>
<li>
<a href="/docs/providers/tencentcloud/r/teo_zone.html">tencentcloud_teo_zone</a>
</li>
Expand Down
Loading