After creating a nested group, the next terraform plan will show the members of the "parent" group as delete changes:
resource "keyhub_group" "new_group" {
name = "new_group"
description = "This group is created by terraform"
nested_under_groupuuid = "0000....."
Output of sub sequential plan:
- member {
- name = "Example User" -> null
- rights = "MANAGER" -> null
- uuid = "0000...." -> null
}
After creating a nested group, the next
terraform planwill show the members of the "parent" group as delete changes:Output of sub sequential plan: