Skip to content

Commit

Permalink
feat: add resource tencentcloud_organization_org_share_unit
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiMengXS committed Feb 4, 2024
1 parent 288f4e4 commit 891a01b
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .changelog/2521.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
tencentcloud_organization_org_share_unit
```
47 changes: 47 additions & 0 deletions website/docs/r/organization_org_share_unit.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
subcategory: "Tencent Cloud Organization (TCO)"
layout: "tencentcloud"
page_title: "TencentCloud: tencentcloud_organization_org_share_unit"
sidebar_current: "docs-tencentcloud-resource-organization_org_share_unit"
description: |-
Provides a resource to create a organization org_share_unit
---

# tencentcloud_organization_org_share_unit

Provides a resource to create a organization org_share_unit

## Example Usage

```hcl
resource "tencentcloud_organization_org_share_unit" "org_share_unit" {
name = "iac-test"
area = "ap-guangzhou"
description = "iac-test"
}
```

## Argument Reference

The following arguments are supported:

* `area` - (Required, String) Shared unit region. The regions that support sharing can be obtained through the DescribeShareAreas interface.
* `name` - (Required, String) Shared unit name. It only supports a combination of uppercase and lowercase letters, numbers, -, and _, with a length of 3-128 characters.
* `description` - (Optional, String) Shared unit description. Up to 128 characters.

## Attributes Reference

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

* `id` - ID of the resource.



## Import

organization org_share_unit can be imported using the id, e.g.

```
terraform import tencentcloud_organization_org_share_unit.org_share_unit org_share_unit_id
```

0 comments on commit 891a01b

Please sign in to comment.