Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b9a8fa4

Browse files
authoredJan 31, 2024
feat: add para (#2512)
* feat: add para * feat: add para
1 parent 38926bb commit b9a8fa4

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed
 

‎.changelog/2512.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
resource/tencentcloud_clb_attachments: support param `eni_ip`
3+
```

‎tencentcloud/services/clb/data_source_tc_clb_attachments.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ func DataSourceTencentCloudClbServerAttachments() *schema.Resource {
7575
Computed: true,
7676
Description: "Id of the backend server.",
7777
},
78+
"eni_ip": {
79+
Type: schema.TypeString,
80+
Computed: true,
81+
Description: "Elastic network card unique ID.",
82+
},
7883
"port": {
7984
Type: schema.TypeInt,
8085
Computed: true,

‎website/docs/d/clb_attachments.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ In addition to all arguments above, the following attributes are exported:
4040
* `protocol_type` - Type of protocol within the listener, and available values include `TCP`, `UDP`, `HTTP`, `HTTPS` and `TCP_SSL`. NOTES: `TCP_SSL` is testing internally, please apply if you need to use.
4141
* `rule_id` - ID of the CLB listener rule.
4242
* `targets` - Information of the backends to be attached.
43+
* `eni_ip` - Elastic network card unique ID.
4344
* `instance_id` - Id of the backend server.
4445
* `port` - Port of the backend server.
4546
* `weight` - Forwarding weight of the backend service, the range of [0, 100], defaults to `10`.

0 commit comments

Comments
 (0)
Please sign in to comment.