Skip to content

Commit adc66b1

Browse files
authored
fix(tco): [123456789] tencentcloud_invite_organization_member_operation update doc (#3136)
* add * add
1 parent 11b7868 commit adc66b1

File tree

3 files changed

+28
-15
lines changed

3 files changed

+28
-15
lines changed

.changelog/3136.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_invite_organization_member_operation: update doc
3+
```
Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
Provides a resource to create a organization invite_organization_member_operation
1+
Provides a resource to create a invite organization member
22

33
Example Usage
44

55
```hcl
6-
resource "tencentcloud_invite_organization_member_operation" "invite_organization_member_operation" {
7-
member_uin = "xxxxxx"
8-
name = "tf-test"
9-
policy_type = "Financial"
10-
node_id = "xxxxxx"
11-
is_allow_quit = "Allow"
12-
permission_ids = ["1", "2", "4"]
6+
resource "tencentcloud_invite_organization_member_operation" "example" {
7+
member_uin = "100040906211"
8+
name = "tf-example"
9+
policy_type = "Financial"
10+
node_id = 2014419
11+
is_allow_quit = "Allow"
12+
permission_ids = [1, 2, 4]
13+
remark = "Remarks."
14+
tags {
15+
tag_key = "CreateBy"
16+
tag_value = "Terraform"
17+
}
1318
}
1419
```

website/docs/r/invite_organization_member_operation.html.markdown

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,28 @@ layout: "tencentcloud"
44
page_title: "TencentCloud: tencentcloud_invite_organization_member_operation"
55
sidebar_current: "docs-tencentcloud-resource-invite_organization_member_operation"
66
description: |-
7-
Provides a resource to create a organization invite_organization_member_operation
7+
Provides a resource to create a invite organization member
88
---
99

1010
# tencentcloud_invite_organization_member_operation
1111

12-
Provides a resource to create a organization invite_organization_member_operation
12+
Provides a resource to create a invite organization member
1313

1414
## Example Usage
1515

1616
```hcl
17-
resource "tencentcloud_invite_organization_member_operation" "invite_organization_member_operation" {
18-
member_uin = "xxxxxx"
19-
name = "tf-test"
17+
resource "tencentcloud_invite_organization_member_operation" "example" {
18+
member_uin = "100040906211"
19+
name = "tf-example"
2020
policy_type = "Financial"
21-
node_id = "xxxxxx"
21+
node_id = 2014419
2222
is_allow_quit = "Allow"
23-
permission_ids = ["1", "2", "4"]
23+
permission_ids = [1, 2, 4]
24+
remark = "Remarks."
25+
tags {
26+
tag_key = "CreateBy"
27+
tag_value = "Terraform"
28+
}
2429
}
2530
```
2631

0 commit comments

Comments
 (0)