Group
akamai_iam_group
Create or delete a child group. To delete a child group, use terraform destroy
.
resource "akamai_iam_group" "my_group" {
parent_group_id = "12345"
name = "my_child_group"
}
Arguments
Pass your parent group's ID and a name to create a new child group.
Argument | Required | Description |
---|---|---|
parent_group_id | ✔️ | Your parent group ID. These groups are the larger product groups set up by your admin team during onboarding. |
name | ✔️ | A human-readable name for your child group. New child groups inherit the properties of the parent. |
Attributes
There is no default standard output. Upon creation, the last line of the process log contains a success message with your child group's ID.
Adding an output block returns your child group details you provided on create along with the computed sub_groups
attribute.
Updated 3 days ago