ENUM

GuardrailsDesiredStateMode

Mode in which we run a desired state, by default all desired states are run in mode MONITOR, for enforcement we use mode ENFORCEMENT

link GraphQL Schema definition

  • enum GuardrailsDesiredStateMode {
  • # This mode indicates that configured desired state will do a change and enforce
  • # the desired state configuration
  • ENFORCEMENT
  • # This mode indicates that configured desired state will only identify changes
  • # between actual and desired state configuration.
  • # Desired states configured with MONITOR mode can be run on schedules to
  • # continuously monitor an account or
  • # can even be triggered with config change events.
  • MONITOR
  • }