Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mikatong committed Dec 3, 2024
1 parent 1c98b36 commit 9749ae5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .changelog/2992.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/tencentcloud_identity_center_group: `group_type` support optional
```
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ func TestAccTencentCloudIdentityCenterGroupResource_basic(t *testing.T) {

const testAccIdentityCenterGroup = `
resource "tencentcloud_identity_center_group" "identity_center_group" {
zone_id = "z-s64jh54hbcra"
zone_id = "z-s64jh54hbcra"
group_name = "tf-test-group"
description = "test"
group_type = "Manual"
group_type = "Manual"
}
`

const testAccIdentityCenterGroupUpdate = `
resource "tencentcloud_identity_center_group" "identity_center_group" {
zone_id = "z-s64jh54hbcra"
zone_id = "z-s64jh54hbcra"
group_name = "tf-test-group"
description = "test_update"
group_type = "Manual"
group_type = "Manual"
}
`

0 comments on commit 9749ae5

Please sign in to comment.