Chef · Schema

Chef Role

Application DeliveryAutomationComplianceConfiguration ManagementDevOpsDevSecOpsHabitatInfrastructure as CodeInSpec

Properties

Name Type Description
name string
description string
run_list array
default_attributes object
override_attributes object
View JSON Schema on GitHub

JSON Schema

chef-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://docs.chef.io/schemas/role.json",
  "title": "Chef Role",
  "type": "object",
  "required": ["name"],
  "properties": {
    "name": { "type": "string" },
    "description": { "type": "string" },
    "run_list": {
      "type": "array",
      "items": { "type": "string" }
    },
    "default_attributes": { "type": "object" },
    "override_attributes": { "type": "object" }
  }
}