Skip to content

fix(tco): [123456789] tencentcloud_invite_organization_member_operation update doc #3136

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
Feb 18, 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/3136.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/tencentcloud_invite_organization_member_operation: update doc
```
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
Provides a resource to create a organization invite_organization_member_operation
Provides a resource to create a invite organization member

Example Usage

```hcl
resource "tencentcloud_invite_organization_member_operation" "invite_organization_member_operation" {
member_uin = "xxxxxx"
name = "tf-test"
policy_type = "Financial"
node_id = "xxxxxx"
is_allow_quit = "Allow"
permission_ids = ["1", "2", "4"]
resource "tencentcloud_invite_organization_member_operation" "example" {
member_uin = "100040906211"
name = "tf-example"
policy_type = "Financial"
node_id = 2014419
is_allow_quit = "Allow"
permission_ids = [1, 2, 4]
remark = "Remarks."
tags {
tag_key = "CreateBy"
tag_value = "Terraform"
}
}
```
19 changes: 12 additions & 7 deletions website/docs/r/invite_organization_member_operation.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,28 @@ layout: "tencentcloud"
page_title: "TencentCloud: tencentcloud_invite_organization_member_operation"
sidebar_current: "docs-tencentcloud-resource-invite_organization_member_operation"
description: |-
Provides a resource to create a organization invite_organization_member_operation
Provides a resource to create a invite organization member
---

# tencentcloud_invite_organization_member_operation

Provides a resource to create a organization invite_organization_member_operation
Provides a resource to create a invite organization member

## Example Usage

```hcl
resource "tencentcloud_invite_organization_member_operation" "invite_organization_member_operation" {
member_uin = "xxxxxx"
name = "tf-test"
resource "tencentcloud_invite_organization_member_operation" "example" {
member_uin = "100040906211"
name = "tf-example"
policy_type = "Financial"
node_id = "xxxxxx"
node_id = 2014419
is_allow_quit = "Allow"
permission_ids = ["1", "2", "4"]
permission_ids = [1, 2, 4]
remark = "Remarks."
tags {
tag_key = "CreateBy"
tag_value = "Terraform"
}
}
```

Expand Down
Loading