Skip to content

Group

The builtin.group is a resource that allows you to either create or delete a group.

INFO

Membership of group is done through the resource of type builtin.user and not through the builtin.group type.

Resource parameters

NameDescriptionRequiredDefault
nameThe name of the group to managetrue

Examples

Create a group named potato

yaml
- title: "Create group potato"
  type: "builtin.group"
  present: true
  data:
    name: "potato"

Delete a group named potato

yaml
- title: "Delete group potato"
  type: "builtin.group"
  present: false
  data:
    name: "potato"