Skip to content

Group

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

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
  parameters:
    name: "potato"

Delete a group named potato

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