├── .expeditor ├── buildkite │ ├── hugo_lint.sh │ └── hugo_lint_cookstyle_pages.sh ├── config.yml ├── update_hugo_modules_artifact_published.sh ├── update_hugo_modules_cookstyle.sh ├── update_hugo_modules_project_promoted.sh ├── update_hugo_modules_pull_request_merged.sh └── verify.pipeline.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── docs-bug-report.md │ ├── feature_request.md │ ├── large-docs-project.md │ └── small-docs-project.md ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── dependabot.yml ├── labeler.yml └── workflows │ ├── labeler.yml │ └── lint.yml ├── .gitignore ├── .markdownlint.yaml ├── .vale.ini ├── .yamllint ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING ├── LICENSE ├── Makefile ├── README.md ├── _vendor ├── github.com │ ├── FortAwesome │ │ └── Font-Awesome │ │ │ └── js-packages │ │ │ └── @fortawesome │ │ │ └── fontawesome-free │ │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _functions.scss │ │ │ ├── _icons.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _sizing.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── chef │ │ ├── automate │ │ │ └── components │ │ │ │ └── docs-chef-io │ │ │ │ ├── config.toml │ │ │ │ ├── content │ │ │ │ └── automate │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── airgapped_installation.md │ │ │ │ │ ├── api.md │ │ │ │ │ ├── api_tokens.md │ │ │ │ │ ├── applications_dashboard.md │ │ │ │ │ ├── applications_setup.md │ │ │ │ │ ├── architectural_overview.md │ │ │ │ │ ├── backup.md │ │ │ │ │ ├── centralize_logs.md │ │ │ │ │ ├── chef_automate_license.md │ │ │ │ │ ├── chef_automate_profile.md │ │ │ │ │ ├── chef_infra_external_cookbooks_in_chef_automate.md │ │ │ │ │ ├── chef_infra_in_chef_automate.md │ │ │ │ │ ├── chef_infra_server.md │ │ │ │ │ ├── cli.md │ │ │ │ │ ├── client_runs.md │ │ │ │ │ ├── config_opensearch.md │ │ │ │ │ ├── config_postgresql.md │ │ │ │ │ ├── configuration.md │ │ │ │ │ ├── create_amazon_opensearch.md │ │ │ │ │ ├── create_amazon_rds.md │ │ │ │ │ ├── data_collection.md │ │ │ │ │ ├── data_lifecycle.md │ │ │ │ │ ├── datafeed.md │ │ │ │ │ ├── desktop.md │ │ │ │ │ ├── disclosure_panel_and_banner.md │ │ │ │ │ ├── eas.md │ │ │ │ │ ├── elasticsearch.md │ │ │ │ │ ├── enhanced_compliance_report.md │ │ │ │ │ ├── event_feed.md │ │ │ │ │ ├── flags.md │ │ │ │ │ ├── get_started.md │ │ │ │ │ ├── ha.md │ │ │ │ │ ├── ha_add_nodes_to_the_deployment.md │ │ │ │ │ ├── ha_automate_to_automate_ha.md │ │ │ │ │ ├── ha_aws_cert_mngr.md │ │ │ │ │ ├── ha_aws_deploy_steps.md │ │ │ │ │ ├── ha_aws_deployment_prerequisites.md │ │ │ │ │ ├── ha_aws_managed_deploy_steps.md │ │ │ │ │ ├── ha_backup_restore.md │ │ │ │ │ ├── ha_backup_restore_aws_efs.md │ │ │ │ │ ├── ha_backup_restore_aws_s3.md │ │ │ │ │ ├── ha_backup_restore_file_system.md │ │ │ │ │ ├── ha_backup_restore_object_storage.md │ │ │ │ │ ├── ha_cert_deployment.md │ │ │ │ │ ├── ha_cert_rotation.md │ │ │ │ │ ├── ha_cert_selfsign.md │ │ │ │ │ ├── ha_cert_show.md │ │ │ │ │ ├── ha_chef_backend_to_automate_ha.md │ │ │ │ │ ├── ha_common.md │ │ │ │ │ ├── ha_config.md │ │ │ │ │ ├── ha_config_gen.md │ │ │ │ │ ├── ha_disaster_recovery_setup.md │ │ │ │ │ ├── ha_disaster_recovery_setup_AWS.md │ │ │ │ │ ├── ha_existing_a2ha_to_automate_ha.md │ │ │ │ │ ├── ha_faqs.md │ │ │ │ │ ├── ha_healthcheck.md │ │ │ │ │ ├── ha_iam_user.md │ │ │ │ │ ├── ha_inplace_migration.md │ │ │ │ │ ├── ha_migrate_bastion.md │ │ │ │ │ ├── ha_node_bootstraping.md │ │ │ │ │ ├── ha_on_premises_deployment_prerequisites.md │ │ │ │ │ ├── ha_onprim_deployment_procedure.md │ │ │ │ │ ├── ha_onprim_deployment_with_aws_managed_deployment.md │ │ │ │ │ ├── ha_onprim_deployment_with_customer_managed_deployment.md │ │ │ │ │ ├── ha_performance_benchmarks.md │ │ │ │ │ ├── ha_remove_single_node_from_cluster.md │ │ │ │ │ ├── ha_sudo_password.md │ │ │ │ │ ├── ha_troubleshooting.md │ │ │ │ │ ├── ha_upgrade_introduction.md │ │ │ │ │ ├── ha_verification_check.md │ │ │ │ │ ├── ha_vpc_setup.md │ │ │ │ │ ├── iam_actions.md │ │ │ │ │ ├── iam_v2_guide.md │ │ │ │ │ ├── iam_v2_overview.md │ │ │ │ │ ├── infra_server.md │ │ │ │ │ ├── install.md │ │ │ │ │ ├── invalid_login_attempts.md │ │ │ │ │ ├── large_compliance_report.md │ │ │ │ │ ├── ldap.md │ │ │ │ │ ├── loadbalancer_configuration.md │ │ │ │ │ ├── log_management.md │ │ │ │ │ ├── major_upgrade.md │ │ │ │ │ ├── major_upgrade_4.x.md │ │ │ │ │ ├── managed_services.md │ │ │ │ │ ├── migrate.md │ │ │ │ │ ├── monitoring-alerting-centralized-logging-integration.md │ │ │ │ │ ├── monitoring.md │ │ │ │ │ ├── node_credentials.md │ │ │ │ │ ├── node_integrations.md │ │ │ │ │ ├── nodes.md │ │ │ │ │ ├── notifications.md │ │ │ │ │ ├── on_prem_builder.md │ │ │ │ │ ├── opensearch.md │ │ │ │ │ ├── opensearch_external_upgrade.md │ │ │ │ │ ├── policies.md │ │ │ │ │ ├── postgres_external_upgrade.md │ │ │ │ │ ├── postgresql.md │ │ │ │ │ ├── profiles.md │ │ │ │ │ ├── projects.md │ │ │ │ │ ├── reports.md │ │ │ │ │ ├── restore.md │ │ │ │ │ ├── reusable │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── md │ │ │ │ │ │ ├── opensearch_health_check.md │ │ │ │ │ │ ├── restore_troubleshooting.md │ │ │ │ │ │ └── saml_supported_identity_providers.md │ │ │ │ │ ├── roles.md │ │ │ │ │ ├── saml.md │ │ │ │ │ ├── scan_jobs.md │ │ │ │ │ ├── security_best_practices.md │ │ │ │ │ ├── servicenow_event_creation.md │ │ │ │ │ ├── servicenow_incident_creation.md │ │ │ │ │ ├── servicenow_integration.md │ │ │ │ │ ├── servicenow_reference.md │ │ │ │ │ ├── session_timeout.md │ │ │ │ │ ├── supermarket_integration_with_automate.md │ │ │ │ │ ├── supermarket_with_automate_ha.md │ │ │ │ │ ├── system_requirements.md │ │ │ │ │ ├── teams.md │ │ │ │ │ ├── telemetry.md │ │ │ │ │ ├── troubleshooting.md │ │ │ │ │ ├── upgrade.md │ │ │ │ │ ├── upgrade_san_certificates.md │ │ │ │ │ └── users.md │ │ │ │ ├── data │ │ │ │ └── automate │ │ │ │ │ ├── api-static │ │ │ │ │ ├── 00-meta.swagger.json │ │ │ │ │ ├── 01-reporting-export.swagger.json │ │ │ │ │ ├── 02-meta-description.yaml │ │ │ │ │ ├── 03-tags.swagger.json │ │ │ │ │ ├── 04-meta-auth.json │ │ │ │ │ ├── 05-node-export.swagger.json │ │ │ │ │ ├── 06-profiles.swagger.json │ │ │ │ │ └── 07-report-manager-export.swagger.json │ │ │ │ │ ├── api_chef_automate │ │ │ │ │ ├── applications │ │ │ │ │ │ └── applications.swagger.json │ │ │ │ │ ├── cds │ │ │ │ │ │ └── cds.swagger.json │ │ │ │ │ ├── cfgmgmt │ │ │ │ │ │ └── cfgmgmt.swagger.json │ │ │ │ │ ├── compliance │ │ │ │ │ │ ├── profiles │ │ │ │ │ │ │ └── profiles.swagger.json │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ ├── reporting.swagger.json │ │ │ │ │ │ │ └── stats │ │ │ │ │ │ │ │ └── stats.swagger.json │ │ │ │ │ │ └── scanner │ │ │ │ │ │ │ └── jobs │ │ │ │ │ │ │ └── jobs.swagger.json │ │ │ │ │ ├── data_feed │ │ │ │ │ │ └── data_feed.swagger.json │ │ │ │ │ ├── data_lifecycle │ │ │ │ │ │ └── data_lifecycle.swagger.json │ │ │ │ │ ├── deployment │ │ │ │ │ │ └── deployment.swagger.json │ │ │ │ │ ├── event_feed │ │ │ │ │ │ └── event_feed.swagger.json │ │ │ │ │ ├── gateway │ │ │ │ │ │ └── gateway.swagger.json │ │ │ │ │ ├── iam │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── introspect.swagger.json │ │ │ │ │ │ │ ├── policy.swagger.json │ │ │ │ │ │ │ ├── rules.swagger.json │ │ │ │ │ │ │ ├── teams.swagger.json │ │ │ │ │ │ │ ├── tokens.swagger.json │ │ │ │ │ │ │ └── users.swagger.json │ │ │ │ │ ├── infra_proxy │ │ │ │ │ │ └── infra_proxy.swagger.json │ │ │ │ │ ├── ingest │ │ │ │ │ │ ├── chef.swagger.json │ │ │ │ │ │ └── job_scheduler.swagger.json │ │ │ │ │ ├── legacy │ │ │ │ │ │ └── legacy.swagger.json │ │ │ │ │ ├── license │ │ │ │ │ │ └── license.swagger.json │ │ │ │ │ ├── nodes │ │ │ │ │ │ ├── manager │ │ │ │ │ │ │ └── manager.swagger.json │ │ │ │ │ │ └── nodes.swagger.json │ │ │ │ │ ├── notifications │ │ │ │ │ │ └── notifications.swagger.json │ │ │ │ │ ├── report_manager │ │ │ │ │ │ └── report_manager.swagger.json │ │ │ │ │ ├── secrets │ │ │ │ │ │ └── secrets.swagger.json │ │ │ │ │ ├── telemetry │ │ │ │ │ │ └── telemetry.swagger.json │ │ │ │ │ └── user_settings │ │ │ │ │ │ └── user_settings.swagger.json │ │ │ │ │ └── cli_chef_automate │ │ │ │ │ ├── commands │ │ │ │ │ ├── chef-automate.yaml │ │ │ │ │ ├── chef-automate_airgap.yaml │ │ │ │ │ ├── chef-automate_airgap_bundle.yaml │ │ │ │ │ ├── chef-automate_airgap_bundle_create.yaml │ │ │ │ │ ├── chef-automate_airgap_bundle_info.yaml │ │ │ │ │ ├── chef-automate_applications.yaml │ │ │ │ │ ├── chef-automate_applications_remove-svcs.yaml │ │ │ │ │ ├── chef-automate_applications_show-svcs.yaml │ │ │ │ │ ├── chef-automate_backup.yaml │ │ │ │ │ ├── chef-automate_backup_cancel.yaml │ │ │ │ │ ├── chef-automate_backup_create.yaml │ │ │ │ │ ├── chef-automate_backup_delete.yaml │ │ │ │ │ ├── chef-automate_backup_fix-repo-permissions.yaml │ │ │ │ │ ├── chef-automate_backup_integrity.yaml │ │ │ │ │ ├── chef-automate_backup_integrity_show.yaml │ │ │ │ │ ├── chef-automate_backup_integrity_validate.yaml │ │ │ │ │ ├── chef-automate_backup_list.yaml │ │ │ │ │ ├── chef-automate_backup_restore.yaml │ │ │ │ │ ├── chef-automate_backup_show.yaml │ │ │ │ │ ├── chef-automate_backup_status.yaml │ │ │ │ │ ├── chef-automate_backup_stream-status.yaml │ │ │ │ │ ├── chef-automate_cert-rotate.yaml │ │ │ │ │ ├── chef-automate_cert-rotate_generate-certificate-config.yaml │ │ │ │ │ ├── chef-automate_cert.yaml │ │ │ │ │ ├── chef-automate_cert_show.yaml │ │ │ │ │ ├── chef-automate_config.yaml │ │ │ │ │ ├── chef-automate_config_gen.yaml │ │ │ │ │ ├── chef-automate_config_oc-id-show-app.yaml │ │ │ │ │ ├── chef-automate_config_patch.yaml │ │ │ │ │ ├── chef-automate_config_set.yaml │ │ │ │ │ ├── chef-automate_config_show.yaml │ │ │ │ │ ├── chef-automate_deploy.yaml │ │ │ │ │ ├── chef-automate_external-cert.yaml │ │ │ │ │ ├── chef-automate_external-cert_show.yaml │ │ │ │ │ ├── chef-automate_gather-logs.yaml │ │ │ │ │ ├── chef-automate_iam.yaml │ │ │ │ │ ├── chef-automate_iam_admin-access.yaml │ │ │ │ │ ├── chef-automate_iam_admin-access_restore.yaml │ │ │ │ │ ├── chef-automate_iam_token.yaml │ │ │ │ │ ├── chef-automate_iam_token_create.yaml │ │ │ │ │ ├── chef-automate_iam_version.yaml │ │ │ │ │ ├── chef-automate_info.yaml │ │ │ │ │ ├── chef-automate_infrastructure.yaml │ │ │ │ │ ├── chef-automate_infrastructure_node-delete.yaml │ │ │ │ │ ├── chef-automate_init-config-ha.yaml │ │ │ │ │ ├── chef-automate_init-config.yaml │ │ │ │ │ ├── chef-automate_internal-ca.yaml │ │ │ │ │ ├── chef-automate_internal-ca_info.yaml │ │ │ │ │ ├── chef-automate_internal-ca_regenerate.yaml │ │ │ │ │ ├── chef-automate_internal-ca_regenerate_root.yaml │ │ │ │ │ ├── chef-automate_license.yaml │ │ │ │ │ ├── chef-automate_license_apply.yaml │ │ │ │ │ ├── chef-automate_license_complianceResourceRunCount.yaml │ │ │ │ │ ├── chef-automate_license_complianceResourceRunReport.yaml │ │ │ │ │ ├── chef-automate_license_nodeRunReport.yaml │ │ │ │ │ ├── chef-automate_license_status.yaml │ │ │ │ │ ├── chef-automate_license_uniqNodeRunReport.yaml │ │ │ │ │ ├── chef-automate_maintenance.yaml │ │ │ │ │ ├── chef-automate_migrate-from-v1-status.yaml │ │ │ │ │ ├── chef-automate_migrate-from-v1.yaml │ │ │ │ │ ├── chef-automate_migrate-from-v1_gen-config.yaml │ │ │ │ │ ├── chef-automate_node.yaml │ │ │ │ │ ├── chef-automate_node_add.yaml │ │ │ │ │ ├── chef-automate_node_remove.yaml │ │ │ │ │ ├── chef-automate_notice.yaml │ │ │ │ │ ├── chef-automate_post-major-upgrade.yaml │ │ │ │ │ ├── chef-automate_post-major-upgrade_clear-data.yaml │ │ │ │ │ ├── chef-automate_post-major-upgrade_migrate.yaml │ │ │ │ │ ├── chef-automate_preflight-check.yaml │ │ │ │ │ ├── chef-automate_preflight-check_migrate-from-v1.yaml │ │ │ │ │ ├── chef-automate_provision-infra.yaml │ │ │ │ │ ├── chef-automate_restart-services.yaml │ │ │ │ │ ├── chef-automate_secrets.yaml │ │ │ │ │ ├── chef-automate_service-versions.yaml │ │ │ │ │ ├── chef-automate_ssh.yaml │ │ │ │ │ ├── chef-automate_start.yaml │ │ │ │ │ ├── chef-automate_status.yaml │ │ │ │ │ ├── chef-automate_status_summary.yaml │ │ │ │ │ ├── chef-automate_stop.yaml │ │ │ │ │ ├── chef-automate_system-logs.yaml │ │ │ │ │ ├── chef-automate_test.yaml │ │ │ │ │ ├── chef-automate_uninstall.yaml │ │ │ │ │ ├── chef-automate_upgrade.yaml │ │ │ │ │ ├── chef-automate_upgrade_run.yaml │ │ │ │ │ ├── chef-automate_upgrade_status.yaml │ │ │ │ │ ├── chef-automate_version.yaml │ │ │ │ │ └── chef-automate_workspace.yaml │ │ │ │ │ └── status │ │ │ │ │ └── errors.yaml │ │ │ │ ├── layouts │ │ │ │ ├── partials │ │ │ │ │ └── cli_chef_automate_toc.html │ │ │ │ └── shortcodes │ │ │ │ │ └── automate │ │ │ │ │ ├── automate_cli_commands.html │ │ │ │ │ ├── automate_cli_status_errors.html │ │ │ │ │ ├── char-warn.md │ │ │ │ │ └── ha-warn.md │ │ │ │ └── static │ │ │ │ ├── automate-api-docs │ │ │ │ └── all-apis.swagger.json │ │ │ │ ├── automate-api-styles.css │ │ │ │ └── images │ │ │ │ └── automate │ │ │ │ ├── DR-2-cluster.png │ │ │ │ ├── DR_AWS_Deployment.png │ │ │ │ ├── HA_Architecture.png │ │ │ │ ├── Node-Integrations-api-Azure.png │ │ │ │ ├── SNOW_Automate_diagram.png │ │ │ │ ├── SNOW_CCR_Setup.png │ │ │ │ ├── SNOW_Failed_Cookbook.png │ │ │ │ ├── SNOW_Failed_Node_CCR.png │ │ │ │ ├── SNOW_Failed_Node_Scan.png │ │ │ │ ├── SNOW_Failed_Profile_Scan.png │ │ │ │ ├── SNOW_Scan_Setup.png │ │ │ │ ├── SNOW_config_page.png │ │ │ │ ├── a2-architecture-os.png │ │ │ │ ├── a2-architecture.png │ │ │ │ ├── add-chef-organization-button.png │ │ │ │ ├── add-chef-organization-popup-menu.png │ │ │ │ ├── add-chef-server-button.png │ │ │ │ ├── add-chef-server-popup-menu-with-error.png │ │ │ │ ├── add-chef-server-popup-menu.png │ │ │ │ ├── add-gcp-api-integration.png │ │ │ │ ├── add-gcp-api-scanjob.png │ │ │ │ ├── admin-policies-editors-add-members.png │ │ │ │ ├── admin-policies-editors-definition.png │ │ │ │ ├── admin-policies-editors-members.png │ │ │ │ ├── admin-policies-migrated.png │ │ │ │ ├── admin-policies.png │ │ │ │ ├── admin-projects.png │ │ │ │ ├── admin-roles.png │ │ │ │ ├── admin-tab-API-tokens-list.png │ │ │ │ ├── admin-tab-teams-list.png │ │ │ │ ├── admin-tab-users-list.png │ │ │ │ ├── api-resource-definition.png │ │ │ │ ├── asset-store-details-installed.png │ │ │ │ ├── asset-store-installed.png │ │ │ │ ├── asset-store-profiles.png │ │ │ │ ├── asset-store-uninstalled-profile.png │ │ │ │ ├── attributes-in-environment.png │ │ │ │ ├── attributes-tab-of-policyfiles.png │ │ │ │ ├── authz-use-cases.iuml │ │ │ │ ├── authz-use-cases.png │ │ │ │ ├── automate_architecture_workflow.png │ │ │ │ ├── banner-in-chef-automate.png │ │ │ │ ├── blockd_user_login_error_msg.png │ │ │ │ ├── chef-automate-infrastructure.png │ │ │ │ ├── chef-automate-on-chef-infra-page.png │ │ │ │ ├── chef-automate-profile.png │ │ │ │ ├── chef-infra-server-objects.png │ │ │ │ ├── chef-server-critical-error.png │ │ │ │ ├── chef-server-organization.png │ │ │ │ ├── chef-server-page.png │ │ │ │ ├── chef_automate_full.png │ │ │ │ ├── choose-a-data-feed-integration.png │ │ │ │ ├── client-details-public-key.png │ │ │ │ ├── client-private-key.png │ │ │ │ ├── client-runs.png │ │ │ │ ├── compliance-jobid.png │ │ │ │ ├── consumer_tests.png │ │ │ │ ├── content-scroller-tab-for-policyfiles.png │ │ │ │ ├── contents-of-a-cookbook.png │ │ │ │ ├── cookbook-constraints-in-environment.png │ │ │ │ ├── cookbook-dependencies-from-policyfiles.png │ │ │ │ ├── could-not-get-cookbooks-organization.png │ │ │ │ ├── create-aws-api-mgr.png │ │ │ │ ├── create-aws-api-scanjob.png │ │ │ │ ├── create-aws-ec2-mgr-no-creds.png │ │ │ │ ├── create-aws-ec2-mgr.png │ │ │ │ ├── create-aws-ec2-scanjob.png │ │ │ │ ├── create-azure-api-mgr.png │ │ │ │ ├── create-azure-api-scanjob.png │ │ │ │ ├── create-azure-vm-mgr.png │ │ │ │ ├── create-azure-vm-scanjob.png │ │ │ │ ├── create-client-button.png │ │ │ │ ├── create-client-popup.png │ │ │ │ ├── create-data-bag-button.png │ │ │ │ ├── create-data-bag-item-button.png │ │ │ │ ├── create-data-bag-item-popup.png │ │ │ │ ├── create-data-bag-popup.png │ │ │ │ ├── create-environment-button.png │ │ │ │ ├── create-environment-popup.png │ │ │ │ ├── create-project-rule.png │ │ │ │ ├── create-role-button.png │ │ │ │ ├── create-role-popup.png │ │ │ │ ├── create-vpc-wizard.png │ │ │ │ ├── credentials-icon.png │ │ │ │ ├── credentials-ssh.png │ │ │ │ ├── credentials-sudo.png │ │ │ │ ├── credentials-winrm.png │ │ │ │ ├── data-feed-instance-using-custom-integration.png │ │ │ │ ├── data-feed-instance-using-elk-integration.png │ │ │ │ ├── data-feed-instance-using-minio-integration.png │ │ │ │ ├── data-feed-instance-using-s3-integration.png │ │ │ │ ├── data-feed-instance-using-servicenow-integration.png │ │ │ │ ├── data-feed-instance-using-splunk-integration.png │ │ │ │ ├── data-lifecycle.png │ │ │ │ ├── date-time-format-in-profile.png │ │ │ │ ├── delete-a-client.png │ │ │ │ ├── delete-a-data-bag.png │ │ │ │ ├── delete-a-node.png │ │ │ │ ├── delete-a-role.png │ │ │ │ ├── delete-an-environment.png │ │ │ │ ├── delete-data-bag-item.png │ │ │ │ ├── delete-data-feed-popup-of-data-feed-instance.png │ │ │ │ ├── delete-policyfiles.png │ │ │ │ ├── delete-the-data-feed-instance.png │ │ │ │ ├── delivery_build_cookbook.png │ │ │ │ ├── delivery_full_workflow.png │ │ │ │ ├── delivery_integrate_smtp.png │ │ │ │ ├── delivery_partial_workflow.png │ │ │ │ ├── delivery_pipeline_attributes.png │ │ │ │ ├── dependency_graph_base_with_xy.png │ │ │ │ ├── details-of-a-cookbook.png │ │ │ │ ├── details-of-data-feed-instance-using-custom-integration.png │ │ │ │ ├── details-of-data-feed-instance-using-elk-integration.png │ │ │ │ ├── details-of-data-feed-instance-using-minio-integration.png │ │ │ │ ├── details-of-data-feed-instance-using-s3-integration.png │ │ │ │ ├── details-of-data-feed-instance-using-servicenow-integration.png │ │ │ │ ├── details-of-data-feed-instance-using-splunk-integration.png │ │ │ │ ├── details-of-policyfiles.png │ │ │ │ ├── details-of-the-policygroup.png │ │ │ │ ├── disable-a-data-feed-from-chef-automate.png │ │ │ │ ├── disclosure-panel-in-chef-automate.png │ │ │ │ ├── display-name-in-profile.png │ │ │ │ ├── dragon.png │ │ │ │ ├── eas-architecture-diagram.png │ │ │ │ ├── eas-filtered-service-groups.png │ │ │ │ ├── eas-service-groups.png │ │ │ │ ├── edit-and-delete-data-bag-item.png │ │ │ │ ├── edit-data-bag-item.png │ │ │ │ ├── edit-run-list-ellipses-icon.png │ │ │ │ ├── edit-run-list.png │ │ │ │ ├── effortless-project-rule.png │ │ │ │ ├── enable-a-data-feed-from-chef-automate.png │ │ │ │ ├── enterprise-license-about-to-expire-banner.png │ │ │ │ ├── enterprise-license-about-to-expire-popup.png │ │ │ │ ├── enterprise-license-expire-grace-period-banner.png │ │ │ │ ├── enterprise-license-expire-grace-period-popup.png │ │ │ │ ├── enterprise-license-expire-popup.png │ │ │ │ ├── environment-tag-manual-node.png │ │ │ │ ├── error-in-display-name-bar.png │ │ │ │ ├── event-feed.png │ │ │ │ ├── event_icons.png │ │ │ │ ├── filled_form_create_data_feed.png │ │ │ │ ├── global-projects-filter.png │ │ │ │ ├── ha_arch_aws_managed.png │ │ │ │ ├── ha_arch_aws_managed.png.old │ │ │ │ ├── ha_arch_aws_managedservices.png │ │ │ │ ├── ha_arch_minnode_cluster.png │ │ │ │ ├── ha_arch_onprem.png │ │ │ │ ├── ha_arch_onpremise.png │ │ │ │ ├── ha_aws_ami.png │ │ │ │ ├── ha_aws_cert_mngr_arn.png │ │ │ │ ├── ha_aws_cert_mngr_console.png │ │ │ │ ├── ha_aws_connect.png │ │ │ │ ├── ha_aws_console.png │ │ │ │ ├── ha_aws_deploy.png │ │ │ │ ├── ha_aws_iam.png │ │ │ │ ├── ha_aws_iam_create_key.png │ │ │ │ ├── ha_aws_iam_key_type.png │ │ │ │ ├── ha_aws_iam_paccess.png │ │ │ │ ├── ha_aws_iam_policy.png │ │ │ │ ├── ha_aws_iam_security_cred.png │ │ │ │ ├── ha_aws_iam_user.png │ │ │ │ ├── ha_aws_iam_user_created.png │ │ │ │ ├── ha_aws_iam_user_review.png │ │ │ │ ├── ha_aws_keypair.png │ │ │ │ ├── ha_aws_launch_status.png │ │ │ │ ├── ha_aws_launchinstances.png │ │ │ │ ├── ha_aws_lb1.png │ │ │ │ ├── ha_aws_resources1.png │ │ │ │ ├── ha_aws_resources2.png │ │ │ │ ├── ha_aws_resources3.png │ │ │ │ ├── ha_aws_resources4.png │ │ │ │ ├── ha_aws_resources5.png │ │ │ │ ├── ha_aws_resources6.png │ │ │ │ ├── ha_aws_subnet.png │ │ │ │ ├── ha_aws_vpc.png │ │ │ │ ├── ha_aws_vpc_existing.png │ │ │ │ ├── ha_aws_vpc_existing_subnet.png │ │ │ │ ├── ha_bare_infra_deploy.png │ │ │ │ ├── ha_cert.png │ │ │ │ ├── ha_load_balancer.png │ │ │ │ ├── ha_output_ocid_app.png │ │ │ │ ├── ha_supemarket_landing_page.png │ │ │ │ ├── ha_supermaket_authorization.png │ │ │ │ ├── ha_supermaket_sign-in.png │ │ │ │ ├── ha_supermarket_app_board.png │ │ │ │ ├── hero.png │ │ │ │ ├── iam-v2-diagram.png │ │ │ │ ├── instance-credentials.png │ │ │ │ ├── invalid_login_attempts_error_msg.png │ │ │ │ ├── invalid_san_certificates.png │ │ │ │ ├── lcr-acknowledgement.png │ │ │ │ ├── lcr-report-download.png │ │ │ │ ├── lcr-report-ready.png │ │ │ │ ├── lcr-request-view-panel.png │ │ │ │ ├── lcr-request-view.png │ │ │ │ ├── lcr_architecture.jpg │ │ │ │ ├── list-of-cookbooks.png │ │ │ │ ├── manage-tags-from-ellipses-icon.png │ │ │ │ ├── managed_services_os_dasboard_permission.png │ │ │ │ ├── managed_services_os_dashboard.png │ │ │ │ ├── migration-and-upgrade-v4-flow.png │ │ │ │ ├── minimal_node.png │ │ │ │ ├── node-attributes-list.png │ │ │ │ ├── node-credentials.png │ │ │ │ ├── node-information-metadata.png │ │ │ │ ├── node-integrations-full.png │ │ │ │ ├── node-integrations.png │ │ │ │ ├── nodes-tab-in-policygroup.png │ │ │ │ ├── notifications-navigation.png │ │ │ │ ├── policyfiles-list-and-searchbar.png │ │ │ │ ├── policyfiles-under-policygroup.png │ │ │ │ ├── profile-detail-body.png │ │ │ │ ├── reports-controls.png │ │ │ │ ├── reports-date.png │ │ │ │ ├── reports-metadata.png │ │ │ │ ├── reports-node-detail.png │ │ │ │ ├── reports-nodes.png │ │ │ │ ├── reports-profiles.png │ │ │ │ ├── reports-scan-history.png │ │ │ │ ├── reports.png │ │ │ │ ├── reset-key-in-client-details.png │ │ │ │ ├── reset-password-from-profile.png │ │ │ │ ├── reset-public-key-of-a-client.png │ │ │ │ ├── reset-the-node-key.png │ │ │ │ ├── revision-id-of-policyfiles.png │ │ │ │ ├── run-list-of-a-node.png │ │ │ │ ├── runlist-tab-for-policyfiles.png │ │ │ │ ├── search-a-node.png │ │ │ │ ├── search-for-a-policygroup.png │ │ │ │ ├── servicenow-notifications-navigation.png │ │ │ │ ├── settings-policies.png │ │ │ │ ├── settings-projects.png │ │ │ │ ├── settings-roles.png │ │ │ │ ├── settings_data_feed.png │ │ │ │ ├── sn_event_app_properties.png │ │ │ │ ├── sn_event_client_run_creation.png │ │ │ │ ├── sn_event_clientrun_alerts.png │ │ │ │ ├── sn_event_compliance_scan_creation.png │ │ │ │ ├── sn_event_inspecscans.png │ │ │ │ ├── sn_event_inspecscans_alerts.png │ │ │ │ ├── sn_event_menus.png │ │ │ │ ├── sn_event_properties.png │ │ │ │ ├── snow_incident_appproperties.png │ │ │ │ ├── snow_incident_plugin.png │ │ │ │ ├── snow_integration_appproperties.png │ │ │ │ ├── snow_integration_configure_sn.png │ │ │ │ ├── snow_integration_create_data_feed.png │ │ │ │ ├── snow_integration_dataflow_diagram.png │ │ │ │ ├── snow_integration_discovery.png │ │ │ │ ├── snow_integration_event_registration.png │ │ │ │ ├── snow_integration_event_registration1.png │ │ │ │ ├── snow_integration_field_map.png │ │ │ │ ├── snow_integration_navigation.png │ │ │ │ ├── snow_integration_plugins.png │ │ │ │ ├── snow_integration_reconcile.png │ │ │ │ ├── snow_integration_reconcile1.png │ │ │ │ ├── snow_integration_script_action.png │ │ │ │ ├── snow_integration_script_action1.png │ │ │ │ ├── snow_integration_scripted_restapi_1.png │ │ │ │ ├── snow_integration_scripted_restapi_2.png │ │ │ │ ├── snow_integration_transform_map_scripts.png │ │ │ │ ├── snow_integration_transform_map_scripts1.png │ │ │ │ ├── standalone_supemarket_landing_page.png │ │ │ │ ├── standalone_supermaket_authorization.png │ │ │ │ ├── standalone_supermaket_sign-in.png │ │ │ │ ├── standalone_supermarket_app_board.png │ │ │ │ ├── standalone_supermarket_credentials_signin.png │ │ │ │ ├── subnet_creation.png │ │ │ │ ├── trial-license-about-to-expire-popup.png │ │ │ │ ├── trial-license-expire-banner.png │ │ │ │ ├── trial-license-expire-popup.png │ │ │ │ ├── update-node-environment.png │ │ │ │ ├── valid_san_certificates.png │ │ │ │ ├── verify_checks_example.png │ │ │ │ ├── view-attributes-details.png │ │ │ │ ├── view-different-versions-of-cookbook.png │ │ │ │ ├── view-role-details.png │ │ │ │ ├── workflow-legacy.png │ │ │ │ ├── workflow-org.png │ │ │ │ ├── workflow-side.png │ │ │ │ ├── workflow-ssh.png │ │ │ │ └── workflow.png │ │ ├── chef-docs-theme │ │ │ ├── assets │ │ │ │ ├── js │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── chef-hugo.js │ │ │ │ │ ├── copy-code-button.js │ │ │ │ │ ├── feedback.js │ │ │ │ │ ├── image-modal.js │ │ │ │ │ ├── inspec-filter.js │ │ │ │ │ ├── resource-note.js │ │ │ │ │ └── swiftype-config.js │ │ │ │ └── sass │ │ │ │ │ ├── _base.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _homepage.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _settings.scss │ │ │ │ │ ├── _typography.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── main.scss │ │ │ │ │ ├── partials │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ ├── _copycode.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _feedback.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _foundation.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _image_modal.scss │ │ │ │ │ ├── _inspec_resources.scss │ │ │ │ │ ├── _sidebar.scss │ │ │ │ │ ├── _swiftype_search.scss │ │ │ │ │ ├── _toc.scss │ │ │ │ │ ├── _utility-bar.scss │ │ │ │ │ └── _version_selector.scss │ │ │ │ │ └── typography │ │ │ │ │ ├── _chroma.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _headings.scss │ │ │ │ │ ├── _links.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _prose.scss │ │ │ │ │ └── _text.scss │ │ │ ├── data │ │ │ │ └── test │ │ │ │ │ └── test.json │ │ │ ├── hugo.toml │ │ │ ├── layouts │ │ │ │ ├── 404.html │ │ │ │ ├── _default │ │ │ │ │ ├── _markup │ │ │ │ │ │ ├── render-image.html │ │ │ │ │ │ └── render-link.html │ │ │ │ │ ├── baseof.html │ │ │ │ │ ├── data-api.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── redirect.html │ │ │ │ │ ├── release_notes.html │ │ │ │ │ ├── search.html │ │ │ │ │ ├── single.html │ │ │ │ │ ├── sitemap.html │ │ │ │ │ └── sitemap.xml │ │ │ │ ├── index.redir │ │ │ │ ├── partials │ │ │ │ │ ├── breadcrumbs.html │ │ │ │ │ ├── cookie_consent.html │ │ │ │ │ ├── feedback.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── google_tag_manager_body.html │ │ │ │ │ ├── google_tag_manager_head.html │ │ │ │ │ ├── head.html │ │ │ │ │ ├── head_summary.html │ │ │ │ │ ├── image_modal.html │ │ │ │ │ ├── javascript.html │ │ │ │ │ ├── on_canvas_top_bar.html │ │ │ │ │ ├── range_menu.html │ │ │ │ │ ├── release_notes_toc.html │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── sidebar-off-canvas.html │ │ │ │ │ ├── sidebar-on-canvas.html │ │ │ │ │ ├── swiftype_search_modal.html │ │ │ │ │ ├── table-of-contents.html │ │ │ │ │ ├── utility-bar.html │ │ │ │ │ ├── version_numbers.html │ │ │ │ │ ├── version_selector.html │ │ │ │ │ ├── zero_prefix_pad.html │ │ │ │ │ └── zero_prefix_trim.html │ │ │ │ └── shortcodes │ │ │ │ │ ├── accordion-item.html │ │ │ │ │ ├── accordion-list.html │ │ │ │ │ ├── beta.html │ │ │ │ │ ├── danger.html │ │ │ │ │ ├── duplicate_page.html │ │ │ │ │ ├── figure.html │ │ │ │ │ ├── fontawesome.html │ │ │ │ │ ├── foundation_tab.html │ │ │ │ │ ├── foundation_tabs.html │ │ │ │ │ ├── foundation_tabs_panel.html │ │ │ │ │ ├── foundation_tabs_panels.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── important.html │ │ │ │ │ ├── inspec_resources.html │ │ │ │ │ ├── inspec_resources_filter.html │ │ │ │ │ ├── note.html │ │ │ │ │ ├── ol-styled.html │ │ │ │ │ ├── readfile.html │ │ │ │ │ ├── recommend.html │ │ │ │ │ ├── responsive-table.html │ │ │ │ │ ├── reusable_text_versioned.html │ │ │ │ │ ├── svg.html │ │ │ │ │ └── warning.html │ │ │ ├── package.hugo.json │ │ │ ├── package.json │ │ │ ├── static │ │ │ │ ├── api-stylesheet.css │ │ │ │ ├── fonts │ │ │ │ │ ├── Inter-Bold.ttf │ │ │ │ │ ├── Inter-Regular.ttf │ │ │ │ │ └── Inter-SemiBold.ttf │ │ │ │ └── images │ │ │ │ │ ├── chef-automate-logo.svg │ │ │ │ │ ├── chef-automate.svg │ │ │ │ │ ├── chef-icon.png │ │ │ │ │ ├── chef-logo-gray.svg │ │ │ │ │ ├── chef-logo-light.svg │ │ │ │ │ ├── chef-logo-white.svg │ │ │ │ │ ├── chef-logo.svg │ │ │ │ │ ├── external-link.svg │ │ │ │ │ ├── habitat-logo.svg │ │ │ │ │ ├── progress-chef-primary-logo.svg │ │ │ │ │ ├── progress-emoticon.ico │ │ │ │ │ ├── web-asset.svg │ │ │ │ │ └── workstation-logo.svg │ │ │ └── theme.toml │ │ ├── chef-server │ │ │ └── docs-chef-io │ │ │ │ ├── config.toml │ │ │ │ ├── content │ │ │ │ └── server │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── api_chef_server.md │ │ │ │ │ ├── auth.md │ │ │ │ │ ├── backend_failure_recovery.md │ │ │ │ │ ├── capacity_planning.md │ │ │ │ │ ├── config_rb_backend.md │ │ │ │ │ ├── config_rb_server.md │ │ │ │ │ ├── config_rb_server_optional_settings.md │ │ │ │ │ ├── ctl_chef_backend.md │ │ │ │ │ ├── ctl_chef_server.md │ │ │ │ │ ├── install_server.md │ │ │ │ │ ├── install_server_ha.md │ │ │ │ │ ├── install_server_pre.md │ │ │ │ │ ├── install_server_tiered.md │ │ │ │ │ ├── license_usage.md │ │ │ │ │ ├── mutual_tls.md │ │ │ │ │ ├── reusable │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── md │ │ │ │ │ │ ├── EOL_backend.md │ │ │ │ │ │ ├── adopted_platforms_server.md │ │ │ │ │ │ ├── chef_auth.md │ │ │ │ │ │ ├── chef_auth_authentication.md │ │ │ │ │ │ ├── chef_server.md │ │ │ │ │ │ ├── chef_server_component_bookshelf.md │ │ │ │ │ │ ├── chef_server_component_erchef.md │ │ │ │ │ │ ├── chef_server_component_postgresql.md │ │ │ │ │ │ ├── config_ocid_application_hash_supermarket.md │ │ │ │ │ │ ├── config_rb_backend_summary.md │ │ │ │ │ │ ├── config_rb_server_summary.md │ │ │ │ │ │ ├── ctl_chef_backend_cleanse_options.md │ │ │ │ │ │ ├── ctl_chef_server_backup.md │ │ │ │ │ │ ├── ctl_chef_server_backup_options.md │ │ │ │ │ │ ├── ctl_chef_server_backup_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_hup.md │ │ │ │ │ │ ├── ctl_chef_server_install_features_download.md │ │ │ │ │ │ ├── ctl_chef_server_install_features_manual.md │ │ │ │ │ │ ├── ctl_chef_server_int.md │ │ │ │ │ │ ├── ctl_chef_server_kill.md │ │ │ │ │ │ ├── ctl_chef_server_once.md │ │ │ │ │ │ ├── ctl_chef_server_org.md │ │ │ │ │ │ ├── ctl_chef_server_org_create.md │ │ │ │ │ │ ├── ctl_chef_server_org_create_options.md │ │ │ │ │ │ ├── ctl_chef_server_org_create_summary.md │ │ │ │ │ │ ├── ctl_chef_server_org_create_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_org_delete.md │ │ │ │ │ │ ├── ctl_chef_server_org_delete_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_org_list.md │ │ │ │ │ │ ├── ctl_chef_server_org_list_options.md │ │ │ │ │ │ ├── ctl_chef_server_org_list_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_org_show.md │ │ │ │ │ │ ├── ctl_chef_server_org_show_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_org_user_add.md │ │ │ │ │ │ ├── ctl_chef_server_org_user_add_options.md │ │ │ │ │ │ ├── ctl_chef_server_org_user_add_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_org_user_remove.md │ │ │ │ │ │ ├── ctl_chef_server_org_user_remove_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_restart.md │ │ │ │ │ │ ├── ctl_chef_server_restore.md │ │ │ │ │ │ ├── ctl_chef_server_restore_options.md │ │ │ │ │ │ ├── ctl_chef_server_restore_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_server_admin.md │ │ │ │ │ │ ├── ctl_chef_server_server_admin_grant_user.md │ │ │ │ │ │ ├── ctl_chef_server_server_admin_list.md │ │ │ │ │ │ ├── ctl_chef_server_server_admin_remove_user.md │ │ │ │ │ │ ├── ctl_chef_server_service_list.md │ │ │ │ │ │ ├── ctl_chef_server_start.md │ │ │ │ │ │ ├── ctl_chef_server_status.md │ │ │ │ │ │ ├── ctl_chef_server_status_logs.md │ │ │ │ │ │ ├── ctl_chef_server_stop.md │ │ │ │ │ │ ├── ctl_chef_server_summary.md │ │ │ │ │ │ ├── ctl_chef_server_tail.md │ │ │ │ │ │ ├── ctl_chef_server_term.md │ │ │ │ │ │ ├── ctl_chef_server_uninstall.md │ │ │ │ │ │ ├── ctl_chef_server_user.md │ │ │ │ │ │ ├── ctl_chef_server_user_create.md │ │ │ │ │ │ ├── ctl_chef_server_user_create_admin.md │ │ │ │ │ │ ├── ctl_chef_server_user_create_options.md │ │ │ │ │ │ ├── ctl_chef_server_user_create_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_user_delete.md │ │ │ │ │ │ ├── ctl_chef_server_user_delete_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_user_edit.md │ │ │ │ │ │ ├── ctl_chef_server_user_edit_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_user_list.md │ │ │ │ │ │ ├── ctl_chef_server_user_list_options.md │ │ │ │ │ │ ├── ctl_chef_server_user_list_syntax.md │ │ │ │ │ │ ├── ctl_chef_server_user_show.md │ │ │ │ │ │ ├── ctl_chef_server_user_show_options.md │ │ │ │ │ │ ├── ctl_chef_server_user_show_syntax.md │ │ │ │ │ │ ├── ctl_common_service_subcommands.md │ │ │ │ │ │ ├── install_chef_server_install_package.md │ │ │ │ │ │ ├── install_chef_server_reconfigure.md │ │ │ │ │ │ ├── notes_config_rb_server_must_reconfigure.md │ │ │ │ │ │ ├── notes_server_aws_cookbook_storage.md │ │ │ │ │ │ ├── plugin_knife_using_authenticated_requests.md │ │ │ │ │ │ ├── server_analyze_postgresql_db.md │ │ │ │ │ │ ├── server_firewalls_and_ports_fe.md │ │ │ │ │ │ ├── server_firewalls_and_ports_listening.md │ │ │ │ │ │ ├── server_firewalls_and_ports_loopback.md │ │ │ │ │ │ ├── server_firewalls_and_ports_summary.md │ │ │ │ │ │ ├── server_firewalls_and_ports_tiered.md │ │ │ │ │ │ ├── server_rbac.md │ │ │ │ │ │ ├── server_rbac_permissions.md │ │ │ │ │ │ ├── server_rbac_permissions_object.md │ │ │ │ │ │ ├── server_rbac_server_admins.md │ │ │ │ │ │ ├── server_rbac_server_admins_scenario.md │ │ │ │ │ │ ├── server_rbac_server_admins_superusers.md │ │ │ │ │ │ ├── server_security_ssl_cert_client.md │ │ │ │ │ │ ├── server_services_bifrost.md │ │ │ │ │ │ ├── server_services_bookshelf.md │ │ │ │ │ │ ├── server_services_elasticsearch.md │ │ │ │ │ │ ├── server_services_erchef.md │ │ │ │ │ │ ├── server_services_expander.md │ │ │ │ │ │ ├── server_services_nginx.md │ │ │ │ │ │ ├── server_services_nginx_tail.md │ │ │ │ │ │ ├── server_services_oc_id.md │ │ │ │ │ │ ├── server_services_postgresql.md │ │ │ │ │ │ ├── server_services_redis.md │ │ │ │ │ │ ├── server_services_solr4.md │ │ │ │ │ │ ├── server_tuning_expander.md │ │ │ │ │ │ ├── server_tuning_nginx.md │ │ │ │ │ │ ├── server_upgrade_duration.md │ │ │ │ │ │ ├── settings_strict_search_result_acls.md │ │ │ │ │ │ ├── system_requirements_ha.md │ │ │ │ │ │ ├── system_requirements_server_hardware.md │ │ │ │ │ │ └── system_requirements_server_software.md │ │ │ │ │ ├── server_backup_restore.md │ │ │ │ │ ├── server_firewalls_and_ports.md │ │ │ │ │ ├── server_logs.md │ │ │ │ │ ├── server_monitor.md │ │ │ │ │ ├── server_orgs.md │ │ │ │ │ ├── server_security.md │ │ │ │ │ ├── server_services.md │ │ │ │ │ ├── server_tuning.md │ │ │ │ │ ├── server_users.md │ │ │ │ │ ├── upgrade_server_ha_v2.md │ │ │ │ │ └── upgrades.md │ │ │ │ └── static │ │ │ │ └── images │ │ │ │ └── server │ │ │ │ ├── chef_server_ha_cluster.svg │ │ │ │ ├── chef_server_ports_standalone.png │ │ │ │ ├── chef_server_ports_tiered.png │ │ │ │ ├── chef_server_tiered.png │ │ │ │ ├── server_components_14.svg │ │ │ │ ├── server_components_postgresql_14.svg │ │ │ │ └── server_components_s3_14.svg │ │ ├── chef-workstation │ │ │ └── docs-chef-io │ │ │ │ ├── config.toml │ │ │ │ ├── content │ │ │ │ └── workstation │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── berkshelf.md │ │ │ │ │ ├── chef-workstation-app.md │ │ │ │ │ ├── chef_run.md │ │ │ │ │ ├── chef_shell.md │ │ │ │ │ ├── chef_vault.md │ │ │ │ │ ├── chefspec.md │ │ │ │ │ ├── config.md │ │ │ │ │ ├── config_rb.md │ │ │ │ │ ├── config_rb_optional_settings.md │ │ │ │ │ ├── config_yml_kitchen.md │ │ │ │ │ ├── cookstyle │ │ │ │ │ └── _index.md │ │ │ │ │ ├── ctl_chef.md │ │ │ │ │ ├── ctl_kitchen.md │ │ │ │ │ ├── foodcritic.md │ │ │ │ │ ├── getting_started.md │ │ │ │ │ ├── install_workstation.md │ │ │ │ │ ├── kitchen.md │ │ │ │ │ ├── knife.md │ │ │ │ │ ├── knife_azurerm.md │ │ │ │ │ ├── knife_bootstrap.md │ │ │ │ │ ├── knife_client.md │ │ │ │ │ ├── knife_configure.md │ │ │ │ │ ├── knife_cookbook.md │ │ │ │ │ ├── knife_cookbook_site.md │ │ │ │ │ ├── knife_data_bag.md │ │ │ │ │ ├── knife_delete.md │ │ │ │ │ ├── knife_deps.md │ │ │ │ │ ├── knife_diff.md │ │ │ │ │ ├── knife_download.md │ │ │ │ │ ├── knife_edit.md │ │ │ │ │ ├── knife_environment.md │ │ │ │ │ ├── knife_exec.md │ │ │ │ │ ├── knife_list.md │ │ │ │ │ ├── knife_node.md │ │ │ │ │ ├── knife_options.md │ │ │ │ │ ├── knife_org.md │ │ │ │ │ ├── knife_raw.md │ │ │ │ │ ├── knife_recipe_list.md │ │ │ │ │ ├── knife_role.md │ │ │ │ │ ├── knife_search.md │ │ │ │ │ ├── knife_serve.md │ │ │ │ │ ├── knife_setup.md │ │ │ │ │ ├── knife_show.md │ │ │ │ │ ├── knife_ssh.md │ │ │ │ │ ├── knife_ssl_check.md │ │ │ │ │ ├── knife_ssl_fetch.md │ │ │ │ │ ├── knife_status.md │ │ │ │ │ ├── knife_supermarket.md │ │ │ │ │ ├── knife_tag.md │ │ │ │ │ ├── knife_upload.md │ │ │ │ │ ├── knife_user.md │ │ │ │ │ ├── knife_windows.md │ │ │ │ │ ├── knife_winrm.md │ │ │ │ │ ├── knife_xargs.md │ │ │ │ │ ├── plugin_kitchen_vagrant.md │ │ │ │ │ ├── plugin_knife.md │ │ │ │ │ ├── plugin_knife_custom.md │ │ │ │ │ ├── plugin_knife_opc.md │ │ │ │ │ ├── privacy.md │ │ │ │ │ ├── reusable │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── md │ │ │ │ │ │ ├── bento.md │ │ │ │ │ │ ├── chef_workstation.md │ │ │ │ │ │ ├── ctl_chef_clean_policy_cookbooks.md │ │ │ │ │ │ ├── ctl_chef_clean_policy_cookbooks_options.md │ │ │ │ │ │ ├── ctl_chef_clean_policy_cookbooks_syntax.md │ │ │ │ │ │ ├── ctl_chef_clean_policy_revisions.md │ │ │ │ │ │ ├── ctl_chef_clean_policy_revisions_options.md │ │ │ │ │ │ ├── ctl_chef_clean_policy_revisions_syntax.md │ │ │ │ │ │ ├── ctl_chef_client_bootstrap_initial_run_list.md │ │ │ │ │ │ ├── ctl_chef_client_elevated_privileges.md │ │ │ │ │ │ ├── ctl_chef_client_elevated_privileges_windows.md │ │ │ │ │ │ ├── ctl_chef_client_options_format.md │ │ │ │ │ │ ├── ctl_chef_delete_policy.md │ │ │ │ │ │ ├── ctl_chef_delete_policy_group.md │ │ │ │ │ │ ├── ctl_chef_delete_policy_group_options.md │ │ │ │ │ │ ├── ctl_chef_delete_policy_group_syntax.md │ │ │ │ │ │ ├── ctl_chef_delete_policy_options.md │ │ │ │ │ │ ├── ctl_chef_delete_policy_syntax.md │ │ │ │ │ │ ├── ctl_chef_diff.md │ │ │ │ │ │ ├── ctl_chef_diff_current_lock_latest_branch.md │ │ │ │ │ │ ├── ctl_chef_diff_current_lock_master_branch.md │ │ │ │ │ │ ├── ctl_chef_diff_current_lock_policy_group.md │ │ │ │ │ │ ├── ctl_chef_diff_current_lock_specified_revision.md │ │ │ │ │ │ ├── ctl_chef_diff_master_lock_revision_lock.md │ │ │ │ │ │ ├── ctl_chef_diff_options.md │ │ │ │ │ │ ├── ctl_chef_diff_syntax.md │ │ │ │ │ │ ├── ctl_chef_diff_two_policy_groups.md │ │ │ │ │ │ ├── ctl_chef_diff_version_lock_master_branch.md │ │ │ │ │ │ ├── ctl_chef_export.md │ │ │ │ │ │ ├── ctl_chef_export_options.md │ │ │ │ │ │ ├── ctl_chef_export_syntax.md │ │ │ │ │ │ ├── ctl_chef_generate_policyfile.md │ │ │ │ │ │ ├── ctl_chef_generate_policyfile_options.md │ │ │ │ │ │ ├── ctl_chef_generate_policyfile_syntax.md │ │ │ │ │ │ ├── ctl_chef_generate_profile.md │ │ │ │ │ │ ├── ctl_chef_generate_profile_options.md │ │ │ │ │ │ ├── ctl_chef_generate_profile_syntax.md │ │ │ │ │ │ ├── ctl_chef_generate_repo.md │ │ │ │ │ │ ├── ctl_chef_generate_repo_options.md │ │ │ │ │ │ ├── ctl_chef_generate_repo_syntax.md │ │ │ │ │ │ ├── ctl_chef_install.md │ │ │ │ │ │ ├── ctl_chef_install_options.md │ │ │ │ │ │ ├── ctl_chef_install_syntax.md │ │ │ │ │ │ ├── ctl_chef_push.md │ │ │ │ │ │ ├── ctl_chef_push_archive.md │ │ │ │ │ │ ├── ctl_chef_push_archive_options.md │ │ │ │ │ │ ├── ctl_chef_push_archive_syntax.md │ │ │ │ │ │ ├── ctl_chef_push_options.md │ │ │ │ │ │ ├── ctl_chef_push_syntax.md │ │ │ │ │ │ ├── ctl_chef_show_policy.md │ │ │ │ │ │ ├── ctl_chef_show_policy_options.md │ │ │ │ │ │ ├── ctl_chef_show_policy_syntax.md │ │ │ │ │ │ ├── ctl_chef_undelete.md │ │ │ │ │ │ ├── ctl_chef_undelete_options.md │ │ │ │ │ │ ├── ctl_chef_undelete_syntax.md │ │ │ │ │ │ ├── ctl_chef_update.md │ │ │ │ │ │ ├── ctl_chef_update_options.md │ │ │ │ │ │ ├── ctl_chef_update_syntax.md │ │ │ │ │ │ ├── ctl_kitchen_common_option_platforms.md │ │ │ │ │ │ ├── ctl_kitchen_summary.md │ │ │ │ │ │ ├── ctl_supermarket_summary.md │ │ │ │ │ │ ├── knife_azure.md │ │ │ │ │ │ ├── knife_bootstrap_node_fips.md │ │ │ │ │ │ ├── knife_bootstrap_summary.md │ │ │ │ │ │ ├── knife_client_summary.md │ │ │ │ │ │ ├── knife_common_see_all_config_options.md │ │ │ │ │ │ ├── knife_common_see_common_options_link.md │ │ │ │ │ │ ├── knife_common_windows_quotes.md │ │ │ │ │ │ ├── knife_common_windows_quotes_module.md │ │ │ │ │ │ ├── knife_configure_summary.md │ │ │ │ │ │ ├── knife_cookbook_summary.md │ │ │ │ │ │ ├── knife_data_bag_edit.md │ │ │ │ │ │ ├── knife_data_bag_edit_item.md │ │ │ │ │ │ ├── knife_data_bag_from_file_create_encrypted_local_mode.md │ │ │ │ │ │ ├── knife_data_bag_summary.md │ │ │ │ │ │ ├── knife_delete_summary.md │ │ │ │ │ │ ├── knife_deps_summary.md │ │ │ │ │ │ ├── knife_diff_summary.md │ │ │ │ │ │ ├── knife_download_summary.md │ │ │ │ │ │ ├── knife_edit_admin_users.md │ │ │ │ │ │ ├── knife_edit_summary.md │ │ │ │ │ │ ├── knife_environment_summary.md │ │ │ │ │ │ ├── knife_exec_summary.md │ │ │ │ │ │ ├── knife_list_summary.md │ │ │ │ │ │ ├── knife_node_run_list_add.md │ │ │ │ │ │ ├── knife_node_run_list_add_default_recipe.md │ │ │ │ │ │ ├── knife_node_run_list_add_options.md │ │ │ │ │ │ ├── knife_node_run_list_add_recipe_with_cookbook.md │ │ │ │ │ │ ├── knife_node_run_list_add_recipe_with_fqdn.md │ │ │ │ │ │ ├── knife_node_run_list_add_role.md │ │ │ │ │ │ ├── knife_node_run_list_add_roles_and_recipes.md │ │ │ │ │ │ ├── knife_node_run_list_add_syntax.md │ │ │ │ │ │ ├── knife_node_run_list_remove.md │ │ │ │ │ │ ├── knife_node_run_list_remove_role.md │ │ │ │ │ │ ├── knife_node_run_list_remove_run_list.md │ │ │ │ │ │ ├── knife_node_run_list_remove_syntax.md │ │ │ │ │ │ ├── knife_node_run_list_set.md │ │ │ │ │ │ ├── knife_node_run_list_set_syntax.md │ │ │ │ │ │ ├── knife_node_summary.md │ │ │ │ │ │ ├── knife_raw_summary.md │ │ │ │ │ │ ├── knife_recipe_list_summary.md │ │ │ │ │ │ ├── knife_role_summary.md │ │ │ │ │ │ ├── knife_search_by_cookbook.md │ │ │ │ │ │ ├── knife_search_by_nested_attribute.md │ │ │ │ │ │ ├── knife_search_by_node.md │ │ │ │ │ │ ├── knife_search_by_node_and_environment.md │ │ │ │ │ │ ├── knife_search_by_platform_ids.md │ │ │ │ │ │ ├── knife_search_by_platform_instance_type.md │ │ │ │ │ │ ├── knife_search_by_query_for_many_attributes.md │ │ │ │ │ │ ├── knife_search_by_query_for_nested_attribute.md │ │ │ │ │ │ ├── knife_search_by_recipe.md │ │ │ │ │ │ ├── knife_search_summary.md │ │ │ │ │ │ ├── knife_search_test_query_for_ssh.md │ │ │ │ │ │ ├── knife_serve_summary.md │ │ │ │ │ │ ├── knife_show_summary.md │ │ │ │ │ │ ├── knife_ssh_summary.md │ │ │ │ │ │ ├── knife_ssl_check_bad_ssl_certificate.md │ │ │ │ │ │ ├── knife_ssl_check_summary.md │ │ │ │ │ │ ├── knife_ssl_check_verify_server_config.md │ │ │ │ │ │ ├── knife_ssl_fetch_summary.md │ │ │ │ │ │ ├── knife_ssl_fetch_verify_certificate.md │ │ │ │ │ │ ├── knife_status_include_run_lists.md │ │ │ │ │ │ ├── knife_status_returned_by_query.md │ │ │ │ │ │ ├── knife_status_summary.md │ │ │ │ │ │ ├── knife_tag_summary.md │ │ │ │ │ │ ├── knife_upload_summary.md │ │ │ │ │ │ ├── knife_user_summary.md │ │ │ │ │ │ ├── knife_windows_summary.md │ │ │ │ │ │ ├── knife_windows_winrm_ports.md │ │ │ │ │ │ ├── knife_xargs_summary.md │ │ │ │ │ │ ├── notes_knife_cookbook_site_use_devkit_berkshelf.md │ │ │ │ │ │ ├── test_kitchen.md │ │ │ │ │ │ ├── test_kitchen_driver_vagrant.md │ │ │ │ │ │ ├── test_kitchen_driver_vagrant_config.md │ │ │ │ │ │ ├── test_kitchen_driver_vagrant_settings.md │ │ │ │ │ │ ├── test_kitchen_drivers.md │ │ │ │ │ │ ├── test_kitchen_yml.md │ │ │ │ │ │ ├── test_kitchen_yml_syntax.md │ │ │ │ │ │ ├── test_kitchen_yml_syntax_proxy.md │ │ │ │ │ │ ├── workstation_supported_derived_platforms.md │ │ │ │ │ │ └── workstation_supported_platforms.md │ │ │ │ │ ├── troubleshooting.md │ │ │ │ │ └── upgrade_lab.md │ │ │ │ └── static │ │ │ │ └── images │ │ │ │ └── chef-workstation │ │ │ │ ├── .gitkeep │ │ │ │ ├── chef-run-mini.gif │ │ │ │ └── chef-run.gif │ │ ├── compliance-profiles │ │ │ └── docs-chef-io │ │ │ │ └── content │ │ │ │ └── release_notes_compliance_profiles.md │ │ ├── compliance-remediation-2022 │ │ │ └── docs-chef-io │ │ │ │ └── content │ │ │ │ └── release_notes_compliance_remediation.md │ │ ├── desktop-config │ │ │ └── docs-chef-io │ │ │ │ ├── config.toml │ │ │ │ ├── content │ │ │ │ └── desktop │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── automate_server.md │ │ │ │ │ ├── cookbook_repository.md │ │ │ │ │ ├── demonstration_setup.md │ │ │ │ │ ├── desktop-cookbook.md │ │ │ │ │ ├── infrastructure_overview.md │ │ │ │ │ ├── install.md │ │ │ │ │ ├── nodes.md │ │ │ │ │ ├── policies.md │ │ │ │ │ ├── requirements.md │ │ │ │ │ ├── resources │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── macos_admin_control.md │ │ │ │ │ ├── macos_app_management.md │ │ │ │ │ ├── macos_automatic_logout.md │ │ │ │ │ ├── macos_automatic_software_updates.md │ │ │ │ │ ├── macos_desktop_screensaver.md │ │ │ │ │ ├── macos_disk_encryption.md │ │ │ │ │ ├── macos_firewall.md │ │ │ │ │ ├── macos_password_policy.md │ │ │ │ │ ├── macos_power_management.md │ │ │ │ │ ├── rescue_account.md │ │ │ │ │ ├── windows_admin_control.md │ │ │ │ │ ├── windows_app_management.md │ │ │ │ │ ├── windows_automatic_logout.md │ │ │ │ │ ├── windows_choco_installer.md │ │ │ │ │ ├── windows_defender.md │ │ │ │ │ ├── windows_defender_exclusion.md │ │ │ │ │ ├── windows_desktop_screensaver.md │ │ │ │ │ ├── windows_desktop_winrm_settings.md │ │ │ │ │ ├── windows_disk_encryption.md │ │ │ │ │ ├── windows_firewall.md │ │ │ │ │ ├── windows_ie_esc.md │ │ │ │ │ ├── windows_password_policy.md │ │ │ │ │ ├── windows_power_management.md │ │ │ │ │ └── windows_update_settings.md │ │ │ │ │ └── zero_touch │ │ │ │ │ ├── macOS │ │ │ │ │ ├── _index.md │ │ │ │ │ └── application_management.md │ │ │ │ │ └── windows │ │ │ │ │ ├── _index.md │ │ │ │ │ └── application_management.md │ │ │ │ ├── data │ │ │ │ └── desktop │ │ │ │ │ └── resources │ │ │ │ │ ├── macos_admin_control.yaml │ │ │ │ │ ├── macos_app_management.yaml │ │ │ │ │ ├── macos_automatic_logout.yaml │ │ │ │ │ ├── macos_automatic_software_updates.yaml │ │ │ │ │ ├── macos_desktop_screensaver.yaml │ │ │ │ │ ├── macos_disk_encryption.yaml │ │ │ │ │ ├── macos_firewall.yaml │ │ │ │ │ ├── macos_password_policy.yaml │ │ │ │ │ ├── macos_power_management.yaml │ │ │ │ │ ├── rescue_account.yaml │ │ │ │ │ ├── windows_admin_control.yaml │ │ │ │ │ ├── windows_app_management.yaml │ │ │ │ │ ├── windows_automatic_logout.yaml │ │ │ │ │ ├── windows_choco_installer.yaml │ │ │ │ │ ├── windows_defender.yaml │ │ │ │ │ ├── windows_defender_exclusion.yaml │ │ │ │ │ ├── windows_desktop_screensaver.yaml │ │ │ │ │ ├── windows_desktop_winrm_settings.yaml │ │ │ │ │ ├── windows_disk_encryption.yaml │ │ │ │ │ ├── windows_firewall.yaml │ │ │ │ │ ├── windows_ie_esc.yaml │ │ │ │ │ ├── windows_password_policy.yaml │ │ │ │ │ ├── windows_power_management.yaml │ │ │ │ │ └── windows_update_settings.yaml │ │ │ │ └── static │ │ │ │ └── images │ │ │ │ └── desktop-config │ │ │ │ ├── .gitkeep │ │ │ │ ├── desktop.png │ │ │ │ └── infrastructure-overview.webp │ │ ├── effortless │ │ │ └── docs-chef-io │ │ │ │ ├── config.toml │ │ │ │ └── content │ │ │ │ └── effortless │ │ │ │ ├── _index.md │ │ │ │ ├── effortless_audit.md │ │ │ │ ├── effortless_config.md │ │ │ │ ├── quick_start.md │ │ │ │ ├── variables_and_config.md │ │ │ │ └── what_is_scaffolding.md │ │ ├── license-service │ │ │ └── docs-chef-io │ │ │ │ ├── config.toml │ │ │ │ └── content │ │ │ │ └── licensing │ │ │ │ └── local_license_service │ │ │ │ ├── _index.md │ │ │ │ ├── api.md │ │ │ │ ├── backup_restore.md │ │ │ │ ├── install.md │ │ │ │ └── reusable │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── samples │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cohorts │ │ │ │ ├── create-cohort.json │ │ │ │ ├── node-override-setting.json │ │ │ │ └── skill-assembly.json │ │ │ ├── courier-job-examples │ │ │ │ ├── 00_empty-job-template.json │ │ │ │ ├── 00_empty-job-template.yaml │ │ │ │ ├── 01_job-with-minimum-details.json │ │ │ │ ├── 01_job-with-minimum-details.yaml │ │ │ │ ├── create-job-simple.json │ │ │ │ ├── create-job-simple.yaml │ │ │ │ ├── infra_client_local.json │ │ │ │ ├── infra_client_local.yaml │ │ │ │ ├── infra_client_pem_key_rotation.json │ │ │ │ ├── infra_client_pem_key_rotation.yaml │ │ │ │ ├── infra_client_run.json │ │ │ │ ├── infra_client_run.yaml │ │ │ │ ├── inspec_exec.json │ │ │ │ ├── inspec_exec.yaml │ │ │ │ ├── inspec_with_token.json │ │ │ │ ├── inspec_with_token.yaml │ │ │ │ ├── job_direct_query_linux.json │ │ │ │ ├── job_direct_query_linux.yaml │ │ │ │ ├── job_reboot.json │ │ │ │ ├── job_reboot.yaml │ │ │ │ ├── job_saved_filter_linux.json │ │ │ │ ├── job_saved_filter_linux.yaml │ │ │ │ ├── job_saved_list_linux.json │ │ │ │ ├── job_saved_list_linux.yaml │ │ │ │ ├── job_windows_conditional_actions.json │ │ │ │ ├── job_windows_conditional_actions.yaml │ │ │ │ ├── macos-job-example.json │ │ │ │ ├── macos-job-example.yaml │ │ │ │ ├── multi-node-multi-group-job-immediate-sequential-batched.json │ │ │ │ ├── multi-node-multi-group-job-immediate-sequential-batched.yaml │ │ │ │ ├── multi-node-one-group-immediate-rolling-linux.json │ │ │ │ ├── multi-node-one-group-immediate-rolling-linux.yaml │ │ │ │ ├── multi-node-two-groups-immediate-parallel-linux.json │ │ │ │ ├── multi-node-two-groups-immediate-parallel-linux.yaml │ │ │ │ ├── nginx_install_linux.json │ │ │ │ ├── nginx_install_linux.yaml │ │ │ │ ├── nginx_patch.json │ │ │ │ ├── nginx_patch.yaml │ │ │ │ ├── nodeman-query-immediate-linux.json │ │ │ │ ├── nodeman-saved-list-immediate.json │ │ │ │ ├── nodeman-saved-list-immediate.yaml │ │ │ │ ├── nodeman-saved-query-immediate-linux.json │ │ │ │ ├── nodeman-saved-query-immediate-linux.yaml │ │ │ │ ├── single-node-job-future-linux.json │ │ │ │ ├── single-node-job-future-linux.yaml │ │ │ │ ├── single-node-job-reoccurring-exception.json │ │ │ │ ├── single-node-job-reoccurring-exception.yaml │ │ │ │ ├── ssl_cert_rotation.json │ │ │ │ └── ssl_cert_rotation.yaml │ │ │ ├── sample.text │ │ │ └── skills │ │ │ │ ├── chef-client-interpreter.json │ │ │ │ ├── courier-runner-skill.json │ │ │ │ ├── gohai-skill.json │ │ │ │ ├── inspec-interpreter-skill.json │ │ │ │ ├── restart-interpreter-skill.json │ │ │ │ └── shell-interpreter-skill.json │ │ └── supermarket │ │ │ └── docs-chef-io │ │ │ ├── config.toml │ │ │ └── content │ │ │ └── supermarket │ │ │ ├── _index.md │ │ │ ├── config_rb_supermarket.md │ │ │ ├── ctl_supermarket.md │ │ │ ├── install_supermarket.md │ │ │ ├── reusable │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── md │ │ │ │ ├── supermarket_api_summary.md │ │ │ │ ├── supermarket_private.md │ │ │ │ └── supermarket_summary.md │ │ │ ├── supermarket_api.md │ │ │ ├── supermarket_backup_restore.md │ │ │ ├── supermarket_logs.md │ │ │ ├── supermarket_monitor.md │ │ │ ├── supermarket_private.md │ │ │ ├── supermarket_share_cookbook.md │ │ │ └── supermarket_upgrade.md │ ├── cowboy │ │ └── jquery-hashchange │ │ │ └── jquery.ba-hashchange.min.js │ ├── habitat-sh │ │ ├── habitat │ │ │ └── components │ │ │ │ └── docs-chef-io │ │ │ │ ├── config.toml │ │ │ │ ├── content │ │ │ │ └── habitat │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── about_services.md │ │ │ │ │ ├── aks.md │ │ │ │ │ ├── application_lifecycle_hooks.md │ │ │ │ │ ├── application_rebuild_flow.md │ │ │ │ │ ├── architecture_overview.md │ │ │ │ │ ├── binary_wrapper.md │ │ │ │ │ ├── build_helpers.md │ │ │ │ │ ├── build_phase_callbacks.md │ │ │ │ │ ├── builder_account.md │ │ │ │ │ ├── builder_api.md │ │ │ │ │ ├── builder_architecture.md │ │ │ │ │ ├── builder_origin_packages.md │ │ │ │ │ ├── builder_origins.md │ │ │ │ │ ├── builder_overview.md │ │ │ │ │ ├── builder_profile.md │ │ │ │ │ ├── certs_custom.md │ │ │ │ │ ├── config_templates.md │ │ │ │ │ ├── configuration_management.md │ │ │ │ │ ├── container_orchestration.md │ │ │ │ │ ├── containers.md │ │ │ │ │ ├── continuous_integration.md │ │ │ │ │ ├── dependency_update_flow.md │ │ │ │ │ ├── docker_automated_flow.md │ │ │ │ │ ├── docker_flow.md │ │ │ │ │ ├── ecs.md │ │ │ │ │ ├── environment_variables.md │ │ │ │ │ ├── gcr.md │ │ │ │ │ ├── get_started.md │ │ │ │ │ ├── hab_setup.md │ │ │ │ │ ├── install_faq.md │ │ │ │ │ ├── install_habitat.md │ │ │ │ │ ├── keys.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── mesos_dcos.md │ │ │ │ │ ├── monitor_services.md │ │ │ │ │ ├── on_prem_flow.md │ │ │ │ │ ├── origin_keys.md │ │ │ │ │ ├── origin_rbac.md │ │ │ │ │ ├── origin_settings.md │ │ │ │ │ ├── origins.md │ │ │ │ │ ├── package_build_flow.md │ │ │ │ │ ├── package_contents.md │ │ │ │ │ ├── pattern_library.md │ │ │ │ │ ├── pkg_binds.md │ │ │ │ │ ├── pkg_build.md │ │ │ │ │ ├── pkg_exports.md │ │ │ │ │ ├── pkg_ids.md │ │ │ │ │ ├── pkg_promote.md │ │ │ │ │ ├── plan_contents.md │ │ │ │ │ ├── plan_helpers.md │ │ │ │ │ ├── plan_quickstart.md │ │ │ │ │ ├── plan_settings.md │ │ │ │ │ ├── plan_variables.md │ │ │ │ │ ├── plan_writing.md │ │ │ │ │ ├── promote_packages.md │ │ │ │ │ ├── reusable │ │ │ │ │ ├── index.md │ │ │ │ │ └── md │ │ │ │ │ │ ├── builder_origins.md │ │ │ │ │ │ ├── create_origins_builder.md │ │ │ │ │ │ ├── create_origins_cli.md │ │ │ │ │ │ ├── habitat_builder_overview.md │ │ │ │ │ │ ├── habitat_plans_overview.md │ │ │ │ │ │ ├── habitat_services_overview.md │ │ │ │ │ │ ├── habitat_studio_overview.md │ │ │ │ │ │ └── habitat_supervisor_overview.md │ │ │ │ │ ├── running_habitat_linux_containers.md │ │ │ │ │ ├── running_habitat_servers.md │ │ │ │ │ ├── running_habitat_windows_containers.md │ │ │ │ │ ├── runtime_binding.md │ │ │ │ │ ├── scaffolding.md │ │ │ │ │ ├── service_group_configuration.md │ │ │ │ │ ├── service_group_topologies.md │ │ │ │ │ ├── service_group_updates.md │ │ │ │ │ ├── service_groups.md │ │ │ │ │ ├── service_restarts.md │ │ │ │ │ ├── service_updates.md │ │ │ │ │ ├── studio.md │ │ │ │ │ ├── sup.md │ │ │ │ │ ├── sup_config.md │ │ │ │ │ ├── sup_crypto.md │ │ │ │ │ ├── sup_design.md │ │ │ │ │ ├── sup_elections.md │ │ │ │ │ ├── sup_launcher.md │ │ │ │ │ ├── sup_log_configuration.md │ │ │ │ │ ├── sup_log_keys.md │ │ │ │ │ ├── sup_networks.md │ │ │ │ │ ├── sup_pkg_config.md │ │ │ │ │ ├── sup_remote_control.md │ │ │ │ │ ├── sup_rings.md │ │ │ │ │ ├── sup_run.md │ │ │ │ │ ├── sup_secure.md │ │ │ │ │ ├── sup_update.md │ │ │ │ │ └── supervisor_api.md │ │ │ │ └── static │ │ │ │ ├── habitat-api-docs │ │ │ │ ├── builder-api.json │ │ │ │ └── sup-api.json │ │ │ │ └── images │ │ │ │ └── habitat │ │ │ │ ├── authorize.png │ │ │ │ ├── build-job-view.png │ │ │ │ ├── builder-build-latest-version.png │ │ │ │ ├── builder-key-upload.png │ │ │ │ ├── builder-view-build-job-icon.svg │ │ │ │ ├── builder_origin_members.png │ │ │ │ ├── builder_profile.png │ │ │ │ ├── builder_profile_user.png │ │ │ │ ├── builder_signin.png │ │ │ │ ├── connect-plan-builder.png │ │ │ │ ├── create-origin-done.png │ │ │ │ ├── create-origin-form.png │ │ │ │ ├── create-origin.png │ │ │ │ ├── demo-tutorial-thumb.png │ │ │ │ ├── deploy-services-to-kubernetes-with-habitat-flow.png │ │ │ │ ├── environment_variable.png │ │ │ │ ├── environment_variable_echo.png │ │ │ │ ├── environment_variable_new.png │ │ │ │ ├── environment_variable_new_var.png │ │ │ │ ├── environment_variable_set.png │ │ │ │ ├── exports_callout.png │ │ │ │ ├── hab-setup-complete.png │ │ │ │ ├── hab-setup.png │ │ │ │ ├── habitat-and-kubernetes-three-tiers-of-service-deployment.png │ │ │ │ ├── habitat-application-rebuild-flow.png │ │ │ │ ├── habitat-architecture-overview.png │ │ │ │ ├── habitat-automated-docker-container-publishing-flow.png │ │ │ │ ├── habitat-builder-architecture.png │ │ │ │ ├── habitat-dependency-update-flow.png │ │ │ │ ├── habitat-diagrams-thumb.png │ │ │ │ ├── habitat-initial-docker-container-publishing-flow.png │ │ │ │ ├── habitat-initial-package-build-flow.png │ │ │ │ ├── habitat-logo.svg │ │ │ │ ├── habitat-on-premises-builder-depot-flow.png │ │ │ │ ├── habitat-promote-packages-through-channels.png │ │ │ │ ├── habitat-runtime-service-group-binding.png │ │ │ │ ├── mesos1-services-marathon.png │ │ │ │ ├── mesos2-new-application.png │ │ │ │ ├── mesos3-new-application-json.png │ │ │ │ ├── mesos4-application.png │ │ │ │ ├── mesos5-debugging.png │ │ │ │ ├── origin-key-download.png │ │ │ │ ├── origin-keys.png │ │ │ │ ├── origin-members.png │ │ │ │ ├── origin-secrets.png │ │ │ │ ├── profile.png │ │ │ │ ├── supervisor_a_after.png │ │ │ │ ├── supervisor_a_before.png │ │ │ │ ├── supervisor_b_after.png │ │ │ │ └── supervisor_b_before.png │ │ └── on-prem-builder │ │ │ └── docs-chef-io │ │ │ ├── config.toml │ │ │ ├── content │ │ │ └── habitat │ │ │ │ └── on_prem_builder │ │ │ │ ├── _index.md │ │ │ │ ├── configure │ │ │ │ ├── _index.md │ │ │ │ ├── artifactory.md │ │ │ │ ├── builder_config_example.md │ │ │ │ ├── disaster_recovery_warm_spare.md │ │ │ │ ├── logs.md │ │ │ │ ├── scale_frontend_nodes.md │ │ │ │ └── separate_backend_services.md │ │ │ │ ├── install │ │ │ │ ├── _index.md │ │ │ │ ├── builder_oauth.md │ │ │ │ ├── system_requirements.md │ │ │ │ └── workstation.md │ │ │ │ ├── manage │ │ │ │ ├── _index.md │ │ │ │ ├── minio.md │ │ │ │ ├── postgres.md │ │ │ │ ├── ssl_cert_rotation.md │ │ │ │ └── upgrade.md │ │ │ │ ├── origins │ │ │ │ ├── _index.md │ │ │ │ ├── create_an_origin.md │ │ │ │ ├── origin_keys.md │ │ │ │ ├── origin_settings.md │ │ │ │ └── rbac.md │ │ │ │ ├── packages │ │ │ │ ├── _index.md │ │ │ │ ├── bootstrap_core_packages.md │ │ │ │ └── update_packages.md │ │ │ │ └── troubleshooting.md │ │ │ └── static │ │ │ └── images │ │ │ └── habitat │ │ │ └── on_prem_builder │ │ │ └── builder_architecture.png │ ├── swiftype │ │ ├── swiftype-autocomplete-jquery │ │ │ └── jquery.swiftype.autocomplete.js │ │ └── swiftype-search-jquery │ │ │ └── jquery.swiftype.search.js │ ├── ten1seven │ │ └── what-input │ │ │ ├── dist │ │ │ ├── what-input.js │ │ │ ├── what-input.min.js │ │ │ └── what-input.min.js.map │ │ │ └── package.json │ └── twitter │ │ └── hogan.js │ │ ├── package.json │ │ └── web │ │ └── builds │ │ └── 3.0.2 │ │ └── hogan-3.0.2.min.js └── modules.txt ├── archetypes ├── all_the_resources.md ├── cookstyle_cop.md ├── cookstyle_cops_all.md ├── default.md └── resource.md ├── assets └── release-notes │ ├── habitat │ └── release-versions.json │ ├── inspec-aws │ └── release-dates.json │ ├── inspec-azure │ └── release-dates.json │ └── inspec │ └── release-versions.json ├── config └── _default │ ├── caches.toml │ ├── hugo.toml │ ├── menu.toml │ ├── module.toml │ └── params.toml ├── content ├── 360 │ ├── _index.md │ └── saas │ │ ├── _index.md │ │ ├── get_started │ │ ├── _index.md │ │ └── set_up.md │ │ ├── reusable_text │ │ ├── index.md │ │ ├── json │ │ │ ├── enroll-node-linux-rsa.json │ │ │ └── enroll-node-windows.json │ │ └── md │ │ │ ├── clis_install_saas.md │ │ │ ├── clis_verify_profiles.md │ │ │ ├── install_bash_completion.md │ │ │ ├── node_cohort_overview.md │ │ │ ├── node_enrollment_status_node_id.md │ │ │ ├── node_management_agent_default_settings.md │ │ │ ├── skill_assembly_default.md │ │ │ └── skill_assembly_get_started.md │ │ └── system_requirements.md ├── _index.md ├── accumulators.md ├── api_omnitruck.md ├── attribute_arrays.md ├── attribute_persistence.md ├── attribute_precedence.md ├── attribute_sources.md ├── attribute_types.md ├── attributes.md ├── automate │ ├── cli_chef_automate.md │ └── cli_chef_automate_ha.md ├── aws_marketplace.md ├── azure_chef_cli.md ├── azure_cwa_cloud_shell.md ├── azure_marketplace.md ├── azure_powershell.md ├── azure_testdrive.md ├── chef_client_overview.md ├── chef_client_security.md ├── chef_compliance_phase.md ├── chef_deprecations_client.md ├── chef_install_script.md ├── chef_license.md ├── chef_license_accept.md ├── chef_overview.md ├── chef_repo.md ├── chef_search.md ├── chef_solo.md ├── chef_system_requirements.md ├── community.md ├── community_contributions.md ├── community_guidelines.md ├── config_rb_client.md ├── config_rb_manage.md ├── config_rb_metadata.md ├── config_rb_policyfile.md ├── config_rb_solo.md ├── cookbook_repo.md ├── cookbook_versioning.md ├── cookbooks.md ├── ctl_chef_client.md ├── ctl_chef_solo.md ├── ctl_manage.md ├── ctl_ohai.md ├── custom_resource_glossary.md ├── custom_resources.md ├── custom_resources_notes.md ├── data_bags.md ├── debug.md ├── definitions_to_custom_resources.md ├── deprecations_attributes.md ├── deprecations_chef_gem_compile_time.md ├── deprecations_chef_platform_methods.md ├── deprecations_chef_rest.md ├── deprecations_chocolatey_uninstall.md ├── deprecations_custom_resource_cleanups.md ├── deprecations_deploy_resource.md ├── deprecations_dnf_package_allow_downgrade.md ├── deprecations_easy_install.md ├── deprecations_epic_fail.md ├── deprecations_erl_call_resource.md ├── deprecations_exit_code.md ├── deprecations_internal_api.md ├── deprecations_json_auto_inflate.md ├── deprecations_launchd_hash_property.md ├── deprecations_legacy_hwrp_mixins.md ├── deprecations_local_listen.md ├── deprecations_locale_lc_all.md ├── deprecations_map_collision.md ├── deprecations_namespace_collisions.md ├── deprecations_ohai_amazon_linux.md ├── deprecations_ohai_cloud.md ├── deprecations_ohai_cloud_v2.md ├── deprecations_ohai_digitalocean.md ├── deprecations_ohai_filesystem.md ├── deprecations_ohai_filesystem_v2.md ├── deprecations_ohai_ipscopes.md ├── deprecations_ohai_legacy_config.md ├── deprecations_ohai_libvirt_plugin.md ├── deprecations_ohai_run_command_helpers.md ├── deprecations_ohai_sigar_plugins.md ├── deprecations_ohai_system_profile.md ├── deprecations_ohai_v6_plugins.md ├── deprecations_ohai_windows_cpu.md ├── deprecations_property_name_collision.md ├── deprecations_resource_cloning.md ├── deprecations_resource_name_without_provides.md ├── deprecations_run_command.md ├── deprecations_shell_out.md ├── deprecations_supports_property.md ├── deprecations_unified_mode.md ├── deprecations_verify_file.md ├── download │ ├── _index.md │ ├── commercial.md │ └── community.md ├── dsl_handler.md ├── enterprise_chef.md ├── enterprise_community_chef.md ├── environments.md ├── errors.md ├── feedback.md ├── files.md ├── fips.md ├── glossary.md ├── google.md ├── habitat │ ├── habitat_cli.md │ └── service_templates.md ├── handlers.md ├── helpers.md ├── infra_language │ ├── _index.md │ ├── checking_architectures.md │ ├── checking_clouds.md │ ├── checking_hypervisors.md │ ├── checking_platforms.md │ ├── cookbook_execution.md │ ├── editing_resources.md │ ├── logging.md │ ├── node_tags.md │ ├── reading_data_bags.md │ ├── registry_keys.md │ ├── search.md │ ├── secrets.md │ ├── shelling_out.md │ └── windows.md ├── inspec │ ├── _index.md │ ├── audit_log.md │ ├── cli.md │ ├── config.md │ ├── inputs.md │ ├── install.md │ ├── license.md │ ├── matchers.md │ ├── parallel.md │ ├── plugins.md │ ├── profiles.md │ ├── reporters.md │ ├── shell.md │ └── waivers.md ├── install_bootstrap.md ├── install_chef_air_gap.md ├── install_windows.md ├── legacy_uninstall.md ├── libraries.md ├── licensing │ ├── _index.md │ ├── accept.md │ ├── license_key.md │ ├── reusable │ │ ├── index.md │ │ └── md │ │ │ └── license_accept_options.md │ └── terms.md ├── lwrp_to_custom_resources.md ├── manage.md ├── manage_uninstall.md ├── nodes.md ├── ohai.md ├── ohai_custom.md ├── packages.md ├── partials.md ├── platform_overview.md ├── platforms.md ├── plugin_community.md ├── policy.md ├── policyfile.md ├── proxies.md ├── quick_start.md ├── recipes.md ├── recipes_json_yaml.md ├── redirect_chef_automate.md ├── redirect_integrate_node_notifications_slack.md ├── redirect_integrate_node_notifications_webhook.md ├── release_notes_360.md ├── release_notes_automate.md ├── release_notes_backend.md ├── release_notes_chefdk.md ├── release_notes_client.md ├── release_notes_download_apis.md ├── release_notes_habitat.md ├── release_notes_habitat_packages.md ├── release_notes_inspec.md ├── release_notes_inspec_alibaba.md ├── release_notes_inspec_aws.md ├── release_notes_inspec_azure.md ├── release_notes_inspec_gcp.md ├── release_notes_local_license_service.md ├── release_notes_manage.md ├── release_notes_server.md ├── release_notes_supermarket.md ├── release_notes_workstation.md ├── resource.md ├── resource_common.md ├── resources │ ├── _index.md │ ├── alternatives.md │ ├── apt_package.md │ ├── apt_preference.md │ ├── apt_repository.md │ ├── apt_update.md │ ├── archive_file.md │ ├── bash.md │ ├── batch.md │ ├── bff_package.md │ ├── breakpoint.md │ ├── build_essential.md │ ├── cab_package.md │ ├── chef_acl.md │ ├── chef_client.md │ ├── chef_client_config.md │ ├── chef_client_cron.md │ ├── chef_client_launchd.md │ ├── chef_client_scheduled_task.md │ ├── chef_client_systemd_timer.md │ ├── chef_client_trusted_certificate.md │ ├── chef_container.md │ ├── chef_data_bag.md │ ├── chef_data_bag_item.md │ ├── chef_environment.md │ ├── chef_gem.md │ ├── chef_group.md │ ├── chef_handler.md │ ├── chef_node.md │ ├── chef_organization.md │ ├── chef_role.md │ ├── chef_sleep.md │ ├── chef_user.md │ ├── chef_vault_secret.md │ ├── chocolatey_config.md │ ├── chocolatey_feature.md │ ├── chocolatey_installer.md │ ├── chocolatey_package.md │ ├── chocolatey_source.md │ ├── cookbook_file.md │ ├── cron.md │ ├── cron_access.md │ ├── cron_d.md │ ├── csh.md │ ├── directory.md │ ├── dmg_package.md │ ├── dnf_package.md │ ├── dpkg_package.md │ ├── dsc_resource.md │ ├── dsc_script.md │ ├── execute.md │ ├── file.md │ ├── freebsd_package.md │ ├── gem_package.md │ ├── git.md │ ├── group.md │ ├── habitat_config.md │ ├── habitat_install.md │ ├── habitat_package.md │ ├── habitat_service.md │ ├── habitat_sup.md │ ├── habitat_user_toml.md │ ├── homebrew_cask.md │ ├── homebrew_package.md │ ├── homebrew_tap.md │ ├── homebrew_update.md │ ├── hostname.md │ ├── http_request.md │ ├── ifconfig.md │ ├── inspec_input.md │ ├── inspec_waiver.md │ ├── inspec_waiver_file_entry.md │ ├── ips_package.md │ ├── kernel_module.md │ ├── ksh.md │ ├── launchd.md │ ├── link.md │ ├── locale.md │ ├── log.md │ ├── macos_userdefaults.md │ ├── macosx_service.md │ ├── macports_package.md │ ├── mdadm.md │ ├── mount.md │ ├── msu_package.md │ ├── notify_group.md │ ├── ohai.md │ ├── ohai_hint.md │ ├── openbsd_package.md │ ├── openssl_dhparam.md │ ├── openssl_ec_private_key.md │ ├── openssl_ec_public_key.md │ ├── openssl_rsa_private_key.md │ ├── openssl_rsa_public_key.md │ ├── openssl_x509_certificate.md │ ├── openssl_x509_crl.md │ ├── openssl_x509_request.md │ ├── osx_profile.md │ ├── package.md │ ├── pacman_package.md │ ├── paludis_package.md │ ├── perl.md │ ├── plist.md │ ├── portage_package.md │ ├── powershell_package.md │ ├── powershell_package_source.md │ ├── powershell_script.md │ ├── python.md │ ├── reboot.md │ ├── registry_key.md │ ├── remote_directory.md │ ├── remote_file.md │ ├── rhsm_errata.md │ ├── rhsm_errata_level.md │ ├── rhsm_register.md │ ├── rhsm_repo.md │ ├── rhsm_subscription.md │ ├── route.md │ ├── rpm_package.md │ ├── ruby.md │ ├── ruby_block.md │ ├── script.md │ ├── selinux_boolean.md │ ├── selinux_fcontext.md │ ├── selinux_install.md │ ├── selinux_login.md │ ├── selinux_module.md │ ├── selinux_permissive.md │ ├── selinux_port.md │ ├── selinux_state.md │ ├── selinux_user.md │ ├── service.md │ ├── smartos_package.md │ ├── snap_package.md │ ├── solaris_package.md │ ├── ssh_known_hosts_entry.md │ ├── subversion.md │ ├── sudo.md │ ├── swap_file.md │ ├── sysctl.md │ ├── systemd_unit.md │ ├── template.md │ ├── timezone.md │ ├── user.md │ ├── user_ulimit.md │ ├── windows_ad_join.md │ ├── windows_audit_policy.md │ ├── windows_auto_run.md │ ├── windows_certificate.md │ ├── windows_defender.md │ ├── windows_defender_exclusion.md │ ├── windows_dfs_folder.md │ ├── windows_dfs_namespace.md │ ├── windows_dfs_server.md │ ├── windows_dns_record.md │ ├── windows_dns_zone.md │ ├── windows_env.md │ ├── windows_feature.md │ ├── windows_feature_dism.md │ ├── windows_feature_powershell.md │ ├── windows_firewall_profile.md │ ├── windows_firewall_rule.md │ ├── windows_font.md │ ├── windows_package.md │ ├── windows_pagefile.md │ ├── windows_path.md │ ├── windows_printer.md │ ├── windows_printer_port.md │ ├── windows_security_policy.md │ ├── windows_service.md │ ├── windows_share.md │ ├── windows_shortcut.md │ ├── windows_task.md │ ├── windows_uac.md │ ├── windows_update_settings.md │ ├── windows_user_privilege.md │ ├── windows_workgroup.md │ ├── yum_package.md │ ├── yum_repository.md │ ├── zypper_package.md │ └── zypper_repository.md ├── reusable │ ├── README.md │ ├── index.md │ └── md │ │ ├── EOL_a1.md │ │ ├── EOL_manage.md │ │ ├── automate_ha_support.md │ │ ├── azure_marketplace.md │ │ ├── chef.md │ │ ├── chef_client_bootstrap_node.md │ │ ├── chef_client_bootstrap_stages.md │ │ ├── chef_client_run.md │ │ ├── chef_client_summary.md │ │ ├── chef_manager.md │ │ ├── chef_repo_description.md │ │ ├── chef_repo_many_users_same_knife.md │ │ ├── chef_shell_advanced_debug.md │ │ ├── chef_shell_breakpoints.md │ │ ├── chef_shell_config.md │ │ ├── chef_shell_config_rb.md │ │ ├── chef_shell_debug_existing_recipe.md │ │ ├── chef_shell_example_get_specific_nodes.md │ │ ├── chef_shell_example_hello_world.md │ │ ├── chef_shell_manage.md │ │ ├── chef_shell_modes.md │ │ ├── chef_shell_run_as_chef_client.md │ │ ├── chef_shell_step_through_run_list.md │ │ ├── chef_shell_summary.md │ │ ├── chef_solo_environments.md │ │ ├── chef_solo_summary.md │ │ ├── chef_tags.md │ │ ├── chefspec_summary.md │ │ ├── config_rb_client_dot_d_directories.md │ │ ├── config_rb_client_summary.md │ │ ├── config_rb_ohai.md │ │ ├── config_rb_ohai_settings.md │ │ ├── cookbook_file_specificity.md │ │ ├── cookbooks_attribute.md │ │ ├── cookbooks_metadata.md │ │ ├── cookbooks_recipe.md │ │ ├── cookbooks_recipe_include_in_recipe.md │ │ ├── cookbooks_recipe_tags.md │ │ ├── cookbooks_summary.md │ │ ├── cookbooks_version.md │ │ ├── cookbooks_version_constraints_operators.md │ │ ├── data_bag.md │ │ ├── data_bag_encryption.md │ │ ├── data_bag_encryption_secret_key.md │ │ ├── data_bag_item.md │ │ ├── dsl_handler_event_types.md │ │ ├── dsl_handler_example_etcd_lock.md │ │ ├── dsl_handler_example_hipchat.md │ │ ├── dsl_handler_method_on.md │ │ ├── dsl_handler_slide_send_email.md │ │ ├── dsl_handler_slide_send_email_handler.md │ │ ├── dsl_handler_slide_send_email_library.md │ │ ├── dsl_handler_slide_send_email_test.md │ │ ├── dsl_handler_summary.md │ │ ├── environment.md │ │ ├── environment_attribute.md │ │ ├── fips_intro_client.md │ │ ├── handler.md │ │ ├── handler_community_handlers.md │ │ ├── handler_type_exception_report.md │ │ ├── handler_type_exception_report_run_from_recipe.md │ │ ├── handler_type_start.md │ │ ├── handler_type_start_run_from_recipe.md │ │ ├── handler_types.md │ │ ├── infra_lang_data_bag.md │ │ ├── infra_lang_method_registry_data_exists.md │ │ ├── infra_lang_method_registry_data_exists_syntax.md │ │ ├── infra_lang_method_registry_get_subkeys.md │ │ ├── infra_lang_method_registry_get_subkeys_syntax.md │ │ ├── infra_lang_method_registry_get_values.md │ │ ├── infra_lang_method_registry_get_values_syntax.md │ │ ├── infra_lang_method_registry_has_subkeys.md │ │ ├── infra_lang_method_registry_has_subkeys_syntax.md │ │ ├── infra_lang_method_registry_key_exists.md │ │ ├── infra_lang_method_registry_key_exists_syntax.md │ │ ├── infra_lang_method_registry_value_exists.md │ │ ├── infra_lang_method_registry_value_exists_syntax.md │ │ ├── infra_lang_method_search_filter_result.md │ │ ├── infra_lang_method_windows_methods.md │ │ ├── infra_lang_ruby.md │ │ ├── infra_lang_summary.md │ │ ├── install_chef_client.md │ │ ├── install_chef_client_windows_as_scheduled_task.md │ │ ├── knife_edit_admin_users.md │ │ ├── libraries_summary.md │ │ ├── manage_webui_node_run_list_add_role_or_recipe.md │ │ ├── manage_webui_node_run_list_remove_role_or_recipe.md │ │ ├── manage_webui_policy_client_permissions_add.md │ │ ├── manage_webui_policy_validation_reset_key.md │ │ ├── nameless_apt_update.md │ │ ├── nameless_build_essential.md │ │ ├── node.md │ │ ├── node_attribute.md │ │ ├── node_attribute_allowlist.md │ │ ├── node_attribute_allowlist_warning.md │ │ ├── node_attribute_blocklist.md │ │ ├── node_attribute_blocklist_warning.md │ │ ├── node_attribute_type_automatic.md │ │ ├── node_attribute_type_default.md │ │ ├── node_attribute_type_normal.md │ │ ├── node_attribute_type_override.md │ │ ├── node_ctl_attribute.md │ │ ├── node_ctl_run_list.md │ │ ├── node_run_list.md │ │ ├── node_run_list_empty.md │ │ ├── node_run_list_format.md │ │ ├── node_types.md │ │ ├── notes_registry_key_not_if_only_if.md │ │ ├── notes_resource_based_on_package.md │ │ ├── notes_see_attributes_overview.md │ │ ├── ohai_attribute_list.md │ │ ├── ohai_automatic_attribute.md │ │ ├── ohai_summary.md │ │ ├── plugin_knife_summary.md │ │ ├── policy_summary.md │ │ ├── policyfile_chef_commands.md │ │ ├── policyfile_lock_json.md │ │ ├── policyfile_lock_json_example.md │ │ ├── policyfile_rb.md │ │ ├── policyfile_rb_example.md │ │ ├── policyfile_rb_settings.md │ │ ├── policyfile_rb_syntax.md │ │ ├── policyfile_summary.md │ │ ├── proxy_env.md │ │ ├── proxy_windows.md │ │ ├── ps_credential_helper.md │ │ ├── recipes_yaml_json_overview.md │ │ ├── release_channels.md │ │ ├── remote_directory_recursive_directories.md │ │ ├── remote_directory_recursive_directories_example.md │ │ ├── remote_file_prevent_re_downloads.md │ │ ├── remote_file_unc_path.md │ │ ├── resource_before_notification_restart.md │ │ ├── resource_chef_gem_gem_package_install.md │ │ ├── resource_cookbook_file_summary.md │ │ ├── resource_execute_command_from_template.md │ │ ├── resource_execute_notifies_specific_order.md │ │ ├── resource_execute_subscribes_prevent_restart_and_reconfigure.md │ │ ├── resource_log_properties.md │ │ ├── resource_log_set_debug.md │ │ ├── resource_log_syntax.md │ │ ├── resource_package_install_gem_with_gemrc.md │ │ ├── resource_package_install_gem_with_hash_options.md │ │ ├── resource_package_install_gem_with_options_string.md │ │ ├── resource_package_options.md │ │ ├── resource_package_options_gemrc.md │ │ ├── resource_package_options_hash.md │ │ ├── resource_package_options_string.md │ │ ├── resource_package_use_ignore_failure_attribute.md │ │ ├── resource_remote_file_transfer_remote_source_changes.md │ │ ├── resource_service_restart_and_notify.md │ │ ├── resource_service_subscribes_reload_using_template.md │ │ ├── resource_service_use_nothing_action.md │ │ ├── resource_service_use_retries_properties.md │ │ ├── resource_template_inline_method.md │ │ ├── resource_template_inline_module.md │ │ ├── resource_template_library_module.md │ │ ├── resource_template_notifies_delay.md │ │ ├── resource_template_notifies_multiple_resources.md │ │ ├── resource_template_notifies_reload_service.md │ │ ├── resource_template_notifies_restart_service_when_template_modified.md │ │ ├── resource_template_notifies_run_immediately.md │ │ ├── resource_template_notifies_send_notifications_to_multiple_resources.md │ │ ├── resource_template_use_relative_paths.md │ │ ├── resources_common.md │ │ ├── resources_common_actions_nothing.md │ │ ├── resources_common_actions_nothing_default.md │ │ ├── resources_common_atomic_update.md │ │ ├── resources_common_compile.md │ │ ├── resources_common_compile_begin.md │ │ ├── resources_common_guard_interpreter.md │ │ ├── resources_common_guard_interpreter_attributes.md │ │ ├── resources_common_guard_interpreter_attributes_inherit.md │ │ ├── resources_common_guard_interpreter_example_default.md │ │ ├── resources_common_guards.md │ │ ├── resources_common_guards_arguments.md │ │ ├── resources_common_guards_properties.md │ │ ├── resources_common_lazy_evaluation.md │ │ ├── resources_common_multiple_packages.md │ │ ├── resources_common_notification.md │ │ ├── resources_common_notification_notifies.md │ │ ├── resources_common_notification_notifies_syntax.md │ │ ├── resources_common_notification_subscribes.md │ │ ├── resources_common_notification_subscribes_syntax.md │ │ ├── resources_common_notification_timers.md │ │ ├── resources_common_package_yum_cache.md │ │ ├── resources_common_powershell.md │ │ ├── resources_common_powershell_dsc.md │ │ ├── resources_common_properties.md │ │ ├── resources_common_relative_paths.md │ │ ├── resources_common_windows_security.md │ │ ├── resources_common_windows_security_acl.md │ │ ├── resources_common_windows_security_inherits.md │ │ ├── role.md │ │ ├── role_attribute.md │ │ ├── ruby_class_chef_log_fatal.md │ │ ├── ruby_class_chef_log_multiple.md │ │ ├── ruby_style_basics_chef_log.md │ │ ├── ruby_style_patterns_hyphens.md │ │ ├── ruby_style_patterns_string_quoting_vs_whitespace_array.md │ │ ├── ruby_summary.md │ │ ├── search.md │ │ ├── search_boolean_and.md │ │ ├── search_boolean_not.md │ │ ├── search_boolean_operators.md │ │ ├── search_boolean_operators_andnot.md │ │ ├── search_boolean_or.md │ │ ├── search_data_bag.md │ │ ├── search_environment.md │ │ ├── search_key.md │ │ ├── search_key_name.md │ │ ├── search_key_nested.md │ │ ├── search_key_nested_range.md │ │ ├── search_key_nested_starting_with.md │ │ ├── search_key_wildcard_asterisk.md │ │ ├── search_key_wildcard_question_mark.md │ │ ├── search_pattern.md │ │ ├── search_pattern_exact.md │ │ ├── search_pattern_exact_key_and_item.md │ │ ├── search_pattern_exact_key_and_item_string.md │ │ ├── search_pattern_fuzzy.md │ │ ├── search_pattern_fuzzy_summary.md │ │ ├── search_pattern_range.md │ │ ├── search_pattern_range_exclusive.md │ │ ├── search_pattern_range_in_between.md │ │ ├── search_pattern_wildcard.md │ │ ├── search_pattern_wildcard_any_node.md │ │ ├── search_pattern_wildcard_node_contains.md │ │ ├── search_query_syntax.md │ │ ├── search_special_characters.md │ │ ├── security_chef_validator.md │ │ ├── security_chef_validator_context.md │ │ ├── security_key_pairs_chef_client.md │ │ ├── supermarket_api_summary.md │ │ ├── target_mode_custom_resource.md │ │ ├── target_mode_custom_resource_example.md │ │ ├── target_mode_summary.md │ │ ├── template.md │ │ ├── template_helpers.md │ │ ├── template_host_notation.md │ │ ├── template_partials.md │ │ ├── template_partials_render_method.md │ │ ├── template_partials_variables_attribute.md │ │ ├── template_requirements.md │ │ ├── template_specificity.md │ │ ├── template_specificity_example.md │ │ ├── template_specificity_pattern.md │ │ ├── template_transfer_frequency.md │ │ ├── template_variables.md │ │ ├── unified_mode_actions_later_resources.md │ │ ├── unified_mode_client_releases.md │ │ ├── unified_mode_enable.md │ │ ├── unified_mode_overview.md │ │ ├── unified_mode_troubleshooting.md │ │ ├── unit_file_verification.md │ │ ├── windows_environment_variable_path.md │ │ ├── windows_install_overview.md │ │ ├── windows_install_system_center.md │ │ ├── windows_msiexec.md │ │ ├── windows_msiexec_addlocal.md │ │ ├── windows_registry_key_backslashes.md │ │ ├── windows_spaces_and_directories.md │ │ ├── windows_top_level_directory_names.md │ │ └── workstation.md ├── roles.md ├── ruby.md ├── run_lists.md ├── saas │ ├── _index.md │ ├── get_started.md │ ├── opsworks_migration.md │ ├── register_nodes.md │ └── sso.md ├── search.md ├── server_configure_saml.md ├── server_ldap.md ├── server_manage_clients.md ├── server_manage_cookbooks.md ├── server_manage_data_bags.md ├── server_manage_environments.md ├── server_manage_nodes.md ├── server_manage_roles.md ├── server_orgs.md ├── server_users.md ├── sitemap.md ├── style │ ├── _index.md │ ├── chef_house.md │ ├── contribute.md │ ├── front_matter.md │ ├── headings.md │ ├── linking.md │ ├── lists.md │ ├── markdown.md │ ├── notices.md │ ├── procedures.md │ ├── product_names.md │ ├── reusable │ │ ├── README.md │ │ ├── index.md │ │ └── md │ │ │ └── fontawesome_shortcode.md │ ├── reuse.md │ ├── shortcodes.md │ ├── tables.md │ ├── terms.md │ ├── test.md │ └── tools.md ├── target_mode.md ├── templates.md ├── terraform.md ├── unified_mode.md ├── uninstall.md ├── upgrade_client.md ├── versions.md ├── vmware.md └── windows.md ├── cspell.yaml ├── data ├── infra │ └── resources │ │ ├── alternatives.yaml │ │ ├── apt_package.yaml │ │ ├── apt_preference.yaml │ │ ├── apt_repository.yaml │ │ ├── apt_update.yaml │ │ ├── archive_file.yaml │ │ ├── bash.yaml │ │ ├── batch.yaml │ │ ├── bff_package.yaml │ │ ├── breakpoint.yaml │ │ ├── build_essential.yaml │ │ ├── cab_package.yaml │ │ ├── chef_acl.yaml │ │ ├── chef_client.yaml │ │ ├── chef_client_config.yaml │ │ ├── chef_client_cron.yaml │ │ ├── chef_client_launchd.yaml │ │ ├── chef_client_scheduled_task.yaml │ │ ├── chef_client_systemd_timer.yaml │ │ ├── chef_client_trusted_certificate.yaml │ │ ├── chef_container.yaml │ │ ├── chef_data_bag.yaml │ │ ├── chef_data_bag_item.yaml │ │ ├── chef_environment.yaml │ │ ├── chef_gem.yaml │ │ ├── chef_group.yaml │ │ ├── chef_handler.yaml │ │ ├── chef_node.yaml │ │ ├── chef_organization.yaml │ │ ├── chef_role.yaml │ │ ├── chef_sleep.yaml │ │ ├── chef_user.yaml │ │ ├── chef_vault_secret.yaml │ │ ├── chocolatey_config.yaml │ │ ├── chocolatey_feature.yaml │ │ ├── chocolatey_installer.yaml │ │ ├── chocolatey_package.yaml │ │ ├── chocolatey_source.yaml │ │ ├── cookbook_file.yaml │ │ ├── cron.yaml │ │ ├── cron_access.yaml │ │ ├── cron_d.yaml │ │ ├── csh.yaml │ │ ├── directory.yaml │ │ ├── dmg_package.yaml │ │ ├── dnf_package.yaml │ │ ├── dpkg_package.yaml │ │ ├── dsc_resource.yaml │ │ ├── dsc_script.yaml │ │ ├── execute.yaml │ │ ├── file.yaml │ │ ├── freebsd_package.yaml │ │ ├── gem_package.yaml │ │ ├── git.yaml │ │ ├── group.yaml │ │ ├── habitat_config.yaml │ │ ├── habitat_install.yaml │ │ ├── habitat_package.yaml │ │ ├── habitat_service.yaml │ │ ├── habitat_sup.yaml │ │ ├── habitat_user_toml.yaml │ │ ├── homebrew_cask.yaml │ │ ├── homebrew_package.yaml │ │ ├── homebrew_tap.yaml │ │ ├── homebrew_update.yaml │ │ ├── hostname.yaml │ │ ├── http_request.yaml │ │ ├── ifconfig.yaml │ │ ├── inspec_input.yaml │ │ ├── inspec_waiver.yaml │ │ ├── inspec_waiver_file_entry.yaml │ │ ├── ips_package.yaml │ │ ├── kernel_module.yaml │ │ ├── ksh.yaml │ │ ├── launchd.yaml │ │ ├── link.yaml │ │ ├── locale.yaml │ │ ├── log.yaml │ │ ├── macos_userdefaults.yaml │ │ ├── macosx_service.yaml │ │ ├── macports_package.yaml │ │ ├── mdadm.yaml │ │ ├── mount.yaml │ │ ├── msu_package.yaml │ │ ├── notify_group.yaml │ │ ├── ohai.yaml │ │ ├── ohai_hint.yaml │ │ ├── openbsd_package.yaml │ │ ├── openssl_dhparam.yaml │ │ ├── openssl_ec_private_key.yaml │ │ ├── openssl_ec_public_key.yaml │ │ ├── openssl_rsa_private_key.yaml │ │ ├── openssl_rsa_public_key.yaml │ │ ├── openssl_x509_certificate.yaml │ │ ├── openssl_x509_crl.yaml │ │ ├── openssl_x509_request.yaml │ │ ├── osx_profile.yaml │ │ ├── package.yaml │ │ ├── pacman_package.yaml │ │ ├── paludis_package.yaml │ │ ├── perl.yaml │ │ ├── plist.yaml │ │ ├── portage_package.yaml │ │ ├── powershell_package.yaml │ │ ├── powershell_package_source.yaml │ │ ├── powershell_script.yaml │ │ ├── python.yaml │ │ ├── reboot.yaml │ │ ├── registry_key.yaml │ │ ├── remote_directory.yaml │ │ ├── remote_file.yaml │ │ ├── rhsm_errata.yaml │ │ ├── rhsm_errata_level.yaml │ │ ├── rhsm_register.yaml │ │ ├── rhsm_repo.yaml │ │ ├── rhsm_subscription.yaml │ │ ├── route.yaml │ │ ├── rpm_package.yaml │ │ ├── ruby.yaml │ │ ├── ruby_block.yaml │ │ ├── script.yaml │ │ ├── selinux_boolean.yaml │ │ ├── selinux_fcontext.yaml │ │ ├── selinux_install.yaml │ │ ├── selinux_login.yaml │ │ ├── selinux_module.yaml │ │ ├── selinux_permissive.yaml │ │ ├── selinux_port.yaml │ │ ├── selinux_state.yaml │ │ ├── selinux_user.yaml │ │ ├── service.yaml │ │ ├── smartos_package.yaml │ │ ├── snap_package.yaml │ │ ├── solaris_package.yaml │ │ ├── ssh_known_hosts_entry.yaml │ │ ├── subversion.yaml │ │ ├── sudo.yaml │ │ ├── swap_file.yaml │ │ ├── sysctl.yaml │ │ ├── systemd_unit.yaml │ │ ├── template.yaml │ │ ├── timezone.yaml │ │ ├── user.yaml │ │ ├── user_ulimit.yaml │ │ ├── windows_ad_join.yaml │ │ ├── windows_audit_policy.yaml │ │ ├── windows_auto_run.yaml │ │ ├── windows_certificate.yaml │ │ ├── windows_defender.yaml │ │ ├── windows_defender_exclusion.yaml │ │ ├── windows_dfs_folder.yaml │ │ ├── windows_dfs_namespace.yaml │ │ ├── windows_dfs_server.yaml │ │ ├── windows_dns_record.yaml │ │ ├── windows_dns_zone.yaml │ │ ├── windows_env.yaml │ │ ├── windows_feature.yaml │ │ ├── windows_feature_dism.yaml │ │ ├── windows_feature_powershell.yaml │ │ ├── windows_firewall_profile.yaml │ │ ├── windows_firewall_rule.yaml │ │ ├── windows_font.yaml │ │ ├── windows_package.yaml │ │ ├── windows_pagefile.yaml │ │ ├── windows_path.yaml │ │ ├── windows_printer.yaml │ │ ├── windows_printer_port.yaml │ │ ├── windows_security_policy.yaml │ │ ├── windows_service.yaml │ │ ├── windows_share.yaml │ │ ├── windows_shortcut.yaml │ │ ├── windows_task.yaml │ │ ├── windows_uac.yaml │ │ ├── windows_update_settings.yaml │ │ ├── windows_user_privilege.yaml │ │ ├── windows_workgroup.yaml │ │ ├── yum_package.yaml │ │ ├── yum_repository.yaml │ │ ├── zypper_package.yaml │ │ └── zypper_repository.yaml └── releases │ └── chef │ └── current.json ├── generated ├── Makefile ├── README.md ├── _vendor │ ├── github.com │ │ └── chef │ │ │ └── cookstyle │ │ │ └── docs-chef-io │ │ │ └── assets │ │ │ └── cookstyle │ │ │ ├── .gitkeep │ │ │ ├── cops_chef_correctness_blockguardwithonlystring.yml │ │ │ ├── cops_chef_correctness_chefapplicationfatal.yml │ │ │ ├── cops_chef_correctness_conditionalrubyshellout.yml │ │ │ ├── cops_chef_correctness_cookbookusesnodesave.yml │ │ │ ├── cops_chef_correctness_dnfpackageallowdowngrades.yml │ │ │ ├── cops_chef_correctness_incorrectlibraryinjection.yml │ │ │ ├── cops_chef_correctness_invalidcookbookname.yml │ │ │ ├── cops_chef_correctness_invaliddefaultaction.yml │ │ │ ├── cops_chef_correctness_invalidnotificationresource.yml │ │ │ ├── cops_chef_correctness_invalidnotificationtiming.yml │ │ │ ├── cops_chef_correctness_invalidplatformfamilyhelper.yml │ │ │ ├── cops_chef_correctness_invalidplatformfamilyincase.yml │ │ │ ├── cops_chef_correctness_invalidplatformhelper.yml │ │ │ ├── cops_chef_correctness_invalidplatformincase.yml │ │ │ ├── cops_chef_correctness_invalidplatformmetadata.yml │ │ │ ├── cops_chef_correctness_invalidplatformvalueforplatformfamilyhelper.yml │ │ │ ├── cops_chef_correctness_invalidplatformvalueforplatformhelper.yml │ │ │ ├── cops_chef_correctness_invalidversionmetadata.yml │ │ │ ├── cops_chef_correctness_lazyevalnodeattributedefaults.yml │ │ │ ├── cops_chef_correctness_lazyinresourceguard.yml │ │ │ ├── cops_chef_correctness_macosuserdefaultsinvalidtype.yml │ │ │ ├── cops_chef_correctness_malformedplatformvalueforplatformhelper.yml │ │ │ ├── cops_chef_correctness_metadatamalformeddepends.yml │ │ │ ├── cops_chef_correctness_metadatamissingname.yml │ │ │ ├── cops_chef_correctness_metadatamissingversion.yml │ │ │ ├── cops_chef_correctness_nodenormal.yml │ │ │ ├── cops_chef_correctness_nodenormalunless.yml │ │ │ ├── cops_chef_correctness_notifiesactionnotsymbol.yml │ │ │ ├── cops_chef_correctness_octalmodeasstring.yml │ │ │ ├── cops_chef_correctness_opensslpasswordhelpers.yml │ │ │ ├── cops_chef_correctness_powershellfileexists.yml │ │ │ ├── cops_chef_correctness_powershellscriptdeletefile.yml │ │ │ ├── cops_chef_correctness_propertywithouttype.yml │ │ │ ├── cops_chef_correctness_resourcesetsinternalproperties.yml │ │ │ ├── cops_chef_correctness_resourcesetsnameproperty.yml │ │ │ ├── cops_chef_correctness_resourcewithnoneaction.yml │ │ │ ├── cops_chef_correctness_scopedfileexist.yml │ │ │ ├── cops_chef_correctness_serviceresource.yml │ │ │ ├── cops_chef_correctness_supportsmustbefloat.yml │ │ │ ├── cops_chef_correctness_tmppath.yml │ │ │ ├── cops_chef_deprecations_chefdkgenerators.yml │ │ │ ├── cops_chef_deprecations_cheffile.yml │ │ │ ├── cops_chef_deprecations_chefhandlerrecipe.yml │ │ │ ├── cops_chef_deprecations_chefhandlerusessupports.yml │ │ │ ├── cops_chef_deprecations_chefrewind.yml │ │ │ ├── cops_chef_deprecations_chefshellout.yml │ │ │ ├── cops_chef_deprecations_chefspeccoveragereport.yml │ │ │ ├── cops_chef_deprecations_chefspeclegacyrunner.yml │ │ │ ├── cops_chef_deprecations_chefsugarhelpers.yml │ │ │ ├── cops_chef_deprecations_chefwindowsplatformhelper.yml │ │ │ ├── cops_chef_deprecations_chocolateypackageuninstallaction.yml │ │ │ ├── cops_chef_deprecations_cookbookdependsoncompatresource.yml │ │ │ ├── cops_chef_deprecations_cookbookdependsonpartialsearch.yml │ │ │ ├── cops_chef_deprecations_cookbookdependsonpoise.yml │ │ │ ├── cops_chef_deprecations_cookbooksdependsonself.yml │ │ │ ├── cops_chef_deprecations_delivery.yml │ │ │ ├── cops_chef_deprecations_dependsonchefnginxcookbook.yml │ │ │ ├── cops_chef_deprecations_dependsonchefreportingcookbook.yml │ │ │ ├── cops_chef_deprecations_dependsonomnibusupdatercookbook.yml │ │ │ ├── cops_chef_deprecations_deprecatedchefspecplatform.yml │ │ │ ├── cops_chef_deprecations_deprecatedplatformmethods.yml │ │ │ ├── cops_chef_deprecations_deprecatedshelloutmethods.yml │ │ │ ├── cops_chef_deprecations_deprecatedsudoactions.yml │ │ │ ├── cops_chef_deprecations_deprecatedwindowsversioncheck.yml │ │ │ ├── cops_chef_deprecations_deprecatedyumrepositoryactions.yml │ │ │ ├── cops_chef_deprecations_deprecatedyumrepositoryproperties.yml │ │ │ ├── cops_chef_deprecations_easyinstallresource.yml │ │ │ ├── cops_chef_deprecations_eolauditmodeusage.yml │ │ │ ├── cops_chef_deprecations_epicfail.yml │ │ │ ├── cops_chef_deprecations_erlcallresource.yml │ │ │ ├── cops_chef_deprecations_executepathproperty.yml │ │ │ ├── cops_chef_deprecations_executerelativecreateswithoutcwd.yml │ │ │ ├── cops_chef_deprecations_foodcriticfile.yml │ │ │ ├── cops_chef_deprecations_foodcritictesting.yml │ │ │ ├── cops_chef_deprecations_hwrpwithoutprovides.yml │ │ │ ├── cops_chef_deprecations_hwrpwithoutunifiedtrue.yml │ │ │ ├── cops_chef_deprecations_includingxmlrubyrecipe.yml │ │ │ ├── cops_chef_deprecations_includingyumdnfcompatrecipe.yml │ │ │ ├── cops_chef_deprecations_launchddeprecatedhashproperty.yml │ │ │ ├── cops_chef_deprecations_legacynotifysyntax.yml │ │ │ ├── cops_chef_deprecations_legacyyumcookbookrecipes.yml │ │ │ ├── cops_chef_deprecations_librarianchefspec.yml │ │ │ ├── cops_chef_deprecations_localedeprecatedlcallproperty.yml │ │ │ ├── cops_chef_deprecations_logresourcenotifications.yml │ │ │ ├── cops_chef_deprecations_macosuserdefaultsglobalproperty.yml │ │ │ ├── cops_chef_deprecations_namepropertywithdefaultvalue.yml │ │ │ ├── cops_chef_deprecations_nodedeepfetch.yml │ │ │ ├── cops_chef_deprecations_nodemethodsinsteadofattributes.yml │ │ │ ├── cops_chef_deprecations_nodeset.yml │ │ │ ├── cops_chef_deprecations_nodesetunless.yml │ │ │ ├── cops_chef_deprecations_nodesetwithoutlevel.yml │ │ │ ├── cops_chef_deprecations_partialsearchclassusage.yml │ │ │ ├── cops_chef_deprecations_partialsearchhelperusage.yml │ │ │ ├── cops_chef_deprecations_poisearchiveusage.yml │ │ │ ├── cops_chef_deprecations_policyfilecommunitysource.yml │ │ │ ├── cops_chef_deprecations_powershellcookbookhelpers.yml │ │ │ ├── cops_chef_deprecations_requirerecipe.yml │ │ │ ├── cops_chef_deprecations_resourceinheritsfromcompatresource.yml │ │ │ ├── cops_chef_deprecations_resourceoverridesprovidesmethod.yml │ │ │ ├── cops_chef_deprecations_resourceusesdslnamemethod.yml │ │ │ ├── cops_chef_deprecations_resourceusesonlyresourcename.yml │ │ │ ├── cops_chef_deprecations_resourceusesproviderbasemethod.yml │ │ │ ├── cops_chef_deprecations_resourceusesupdatedmethod.yml │ │ │ ├── cops_chef_deprecations_resourcewithoutunifiedtrue.yml │ │ │ ├── cops_chef_deprecations_ruby27keywordargumentwarnings.yml │ │ │ ├── cops_chef_deprecations_rubyblockcreateaction.yml │ │ │ ├── cops_chef_deprecations_searchusespositionalparameters.yml │ │ │ ├── cops_chef_deprecations_useautomaticresourcename.yml │ │ │ ├── cops_chef_deprecations_useinlineresourcesdefined.yml │ │ │ ├── cops_chef_deprecations_userdeprecatedsupportsproperty.yml │ │ │ ├── cops_chef_deprecations_useschefresthelpers.yml │ │ │ ├── cops_chef_deprecations_usesdeprecatedmixins.yml │ │ │ ├── cops_chef_deprecations_usesruncommandhelper.yml │ │ │ ├── cops_chef_deprecations_useyamldump.yml │ │ │ ├── cops_chef_deprecations_verifypropertyusesfileexpansion.yml │ │ │ ├── cops_chef_deprecations_windowsfeatureservermanagercmd.yml │ │ │ ├── cops_chef_deprecations_windowspackageinstallertypestring.yml │ │ │ ├── cops_chef_deprecations_windowstaskchangeaction.yml │ │ │ ├── cops_chef_deprecations_windowsversionhelpers.yml │ │ │ ├── cops_chef_effortless_berksfile.yml │ │ │ ├── cops_chef_effortless_chefvaultused.yml │ │ │ ├── cops_chef_effortless_cookbookusesdatabags.yml │ │ │ ├── cops_chef_effortless_cookbookusesenvironments.yml │ │ │ ├── cops_chef_effortless_cookbookusespolicygroups.yml │ │ │ ├── cops_chef_effortless_cookbookusesroles.yml │ │ │ ├── cops_chef_effortless_cookbookusessearch.yml │ │ │ ├── cops_chef_effortless_dependschefvault.yml │ │ │ ├── cops_chef_effortless_searchforenvironmentsorroles.yml │ │ │ ├── cops_chef_modernize_actionmethodinresource.yml │ │ │ ├── cops_chef_modernize_allowedactionsfrominitialize.yml │ │ │ ├── cops_chef_modernize_chefgemnokogiri.yml │ │ │ ├── cops_chef_modernize_classevalactionclass.yml │ │ │ ├── cops_chef_modernize_conditionalusingtest.yml │ │ │ ├── cops_chef_modernize_crondfileortemplate.yml │ │ │ ├── cops_chef_modernize_cronmanageresource.yml │ │ │ ├── cops_chef_modernize_customresourcewithattributes.yml │ │ │ ├── cops_chef_modernize_databaghelpers.yml │ │ │ ├── cops_chef_modernize_declareactionclass.yml │ │ │ ├── cops_chef_modernize_defaultactionfrominitialize.yml │ │ │ ├── cops_chef_modernize_defineschefspecmatchers.yml │ │ │ ├── cops_chef_modernize_definitions.yml │ │ │ ├── cops_chef_modernize_dependsonchefvaultcookbook.yml │ │ │ ├── cops_chef_modernize_dependsonchocolateycookbooks.yml │ │ │ ├── cops_chef_modernize_dependsonkernelmodulecookbook.yml │ │ │ ├── cops_chef_modernize_dependsonlocalecookbook.yml │ │ │ ├── cops_chef_modernize_dependsonopensslcookbook.yml │ │ │ ├── cops_chef_modernize_dependsontimezonelwrpcookbook.yml │ │ │ ├── cops_chef_modernize_dependsonwindowsfirewallcookbook.yml │ │ │ ├── cops_chef_modernize_dependsonzyppercookbook.yml │ │ │ ├── cops_chef_modernize_dslincludeinresource.yml │ │ │ ├── cops_chef_modernize_emptyresourceinitializemethod.yml │ │ │ ├── cops_chef_modernize_executeaptupdate.yml │ │ │ ├── cops_chef_modernize_executescexe.yml │ │ │ ├── cops_chef_modernize_executesleep.yml │ │ │ ├── cops_chef_modernize_executesysctl.yml │ │ │ ├── cops_chef_modernize_executetzutil.yml │ │ │ ├── cops_chef_modernize_foodcriticcomments.yml │ │ │ ├── cops_chef_modernize_ifprovidesdefaultaction.yml │ │ │ ├── cops_chef_modernize_includingaptdefaultrecipe.yml │ │ │ ├── cops_chef_modernize_includingmixinshelloutinresources.yml │ │ │ ├── cops_chef_modernize_includingohaidefaultrecipe.yml │ │ │ ├── cops_chef_modernize_includingwindowsdefaultrecipe.yml │ │ │ ├── cops_chef_modernize_legacyberksfilesource.yml │ │ │ ├── cops_chef_modernize_libarchivefileresource.yml │ │ │ ├── cops_chef_modernize_macosxuserdefaults.yml │ │ │ ├── cops_chef_modernize_minitesthandlerusage.yml │ │ │ ├── cops_chef_modernize_nodeinitpackage.yml │ │ │ ├── cops_chef_modernize_noderolesinclude.yml │ │ │ ├── cops_chef_modernize_opensslrsakeyresource.yml │ │ │ ├── cops_chef_modernize_opensslx509resource.yml │ │ │ ├── cops_chef_modernize_osxconfigprofileresource.yml │ │ │ ├── cops_chef_modernize_powershellguardinterpreter.yml │ │ │ ├── cops_chef_modernize_powershellinstallpackage.yml │ │ │ ├── cops_chef_modernize_powershellinstallwindowsfeature.yml │ │ │ ├── cops_chef_modernize_powershellscriptexpandarchive.yml │ │ │ ├── cops_chef_modernize_propertywithnameattribute.yml │ │ │ ├── cops_chef_modernize_providesfrominitialize.yml │ │ │ ├── cops_chef_modernize_resourceforcingcompiletime.yml │ │ │ ├── cops_chef_modernize_resourcenamefrominitialize.yml │ │ │ ├── cops_chef_modernize_respondtocompiletime.yml │ │ │ ├── cops_chef_modernize_respondtoinmetadata.yml │ │ │ ├── cops_chef_modernize_respondtoprovides.yml │ │ │ ├── cops_chef_modernize_respondtoresourcename.yml │ │ │ ├── cops_chef_modernize_setorreturninresources.yml │ │ │ ├── cops_chef_modernize_sevenziparchiveresource.yml │ │ │ ├── cops_chef_modernize_shellouthelper.yml │ │ │ ├── cops_chef_modernize_shellouttochocolatey.yml │ │ │ ├── cops_chef_modernize_simplifyaptppasetup.yml │ │ │ ├── cops_chef_modernize_sysctlparamresource.yml │ │ │ ├── cops_chef_modernize_unnecessarydependschef14.yml │ │ │ ├── cops_chef_modernize_unnecessarydependschef15.yml │ │ │ ├── cops_chef_modernize_unnecessarymixlibshelloutrequire.yml │ │ │ ├── cops_chef_modernize_usebuildessentialresource.yml │ │ │ ├── cops_chef_modernize_usecheflanguagecloudhelpers.yml │ │ │ ├── cops_chef_modernize_usecheflanguageenvhelpers.yml │ │ │ ├── cops_chef_modernize_usecheflanguagesystemdhelper.yml │ │ │ ├── cops_chef_modernize_usemultipackageinstalls.yml │ │ │ ├── cops_chef_modernize_userequirerelative.yml │ │ │ ├── cops_chef_modernize_useszypperrepo.yml │ │ │ ├── cops_chef_modernize_whyrunsupportedtrue.yml │ │ │ ├── cops_chef_modernize_windowsregistryuac.yml │ │ │ ├── cops_chef_modernize_windowsscresource.yml │ │ │ ├── cops_chef_modernize_windowszipfileusage.yml │ │ │ ├── cops_chef_modernize_zipfileresource.yml │ │ │ ├── cops_chef_redundantcode_aptrepositorydistributiondefault.yml │ │ │ ├── cops_chef_redundantcode_aptrepositorynotifiesaptupdate.yml │ │ │ ├── cops_chef_redundantcode_attributemetadata.yml │ │ │ ├── cops_chef_redundantcode_conflictsmetadata.yml │ │ │ ├── cops_chef_redundantcode_customresourcewithallowedactions.yml │ │ │ ├── cops_chef_redundantcode_doublecompiletime.yml │ │ │ ├── cops_chef_redundantcode_groupingmetadata.yml │ │ │ ├── cops_chef_redundantcode_longdescriptionmetadata.yml │ │ │ ├── cops_chef_redundantcode_multipleplatformchecks.yml │ │ │ ├── cops_chef_redundantcode_namepropertyisrequired.yml │ │ │ ├── cops_chef_redundantcode_ohaiattributetostring.yml │ │ │ ├── cops_chef_redundantcode_propertysplatregex.yml │ │ │ ├── cops_chef_redundantcode_propertywithrequiredanddefault.yml │ │ │ ├── cops_chef_redundantcode_providesmetadata.yml │ │ │ ├── cops_chef_redundantcode_recipemetadata.yml │ │ │ ├── cops_chef_redundantcode_replacesmetadata.yml │ │ │ ├── cops_chef_redundantcode_resourcewithnothingaction.yml │ │ │ ├── cops_chef_redundantcode_sensitivepropertyinresource.yml │ │ │ ├── cops_chef_redundantcode_stringpropertywithnildefault.yml │ │ │ ├── cops_chef_redundantcode_suggestsmetadata.yml │ │ │ ├── cops_chef_redundantcode_unnecessarydesiredstate.yml │ │ │ ├── cops_chef_redundantcode_unnecessarynameproperty.yml │ │ │ ├── cops_chef_redundantcode_usecreateifmissing.yml │ │ │ ├── cops_chef_security_sshprivatekey.yml │ │ │ ├── cops_chef_sharing_defaultmetadatamaintainer.yml │ │ │ ├── cops_chef_sharing_emptymetadatafield.yml │ │ │ ├── cops_chef_sharing_includepropertydescriptions.yml │ │ │ ├── cops_chef_sharing_includeresourcedescriptions.yml │ │ │ ├── cops_chef_sharing_includeresourceexamples.yml │ │ │ ├── cops_chef_sharing_insecurecookbookurl.yml │ │ │ ├── cops_chef_sharing_invalidlicensestring.yml │ │ │ ├── cops_chef_style_attributekeys.yml │ │ │ ├── cops_chef_style_chefwhaaat.yml │ │ │ ├── cops_chef_style_commentformat.yml │ │ │ ├── cops_chef_style_commentsentencespacing.yml │ │ │ ├── cops_chef_style_copyrightcommentformat.yml │ │ │ ├── cops_chef_style_defaultcopyrightcomments.yml │ │ │ ├── cops_chef_style_filemode.yml │ │ │ ├── cops_chef_style_immediatenotificationtiming.yml │ │ │ ├── cops_chef_style_includerecipewithparentheses.yml │ │ │ ├── cops_chef_style_negatingonlyif.yml │ │ │ ├── cops_chef_style_overlycomplexsupportsdependsmetadata.yml │ │ │ ├── cops_chef_style_simplifyplatformmajorversioncheck.yml │ │ │ ├── cops_chef_style_trueclassfalseclassresourceproperties.yml │ │ │ ├── cops_chef_style_unnecessaryoscheck.yml │ │ │ ├── cops_chef_style_unnecessaryplatformcasestatement.yml │ │ │ ├── cops_chef_style_useplatformhelpers.yml │ │ │ ├── cops_inspec_deprecations_attributedefault.yml │ │ │ └── cops_inspec_deprecations_attributehelper.yml │ └── modules.txt ├── config.toml ├── generated_content │ └── workstation │ │ └── cookstyle │ │ └── cops │ │ ├── _index.md │ │ ├── chef_correctness_blockguardwithonlystring.md │ │ ├── chef_correctness_chefapplicationfatal.md │ │ ├── chef_correctness_conditionalrubyshellout.md │ │ ├── chef_correctness_cookbookusesnodesave.md │ │ ├── chef_correctness_dnfpackageallowdowngrades.md │ │ ├── chef_correctness_incorrectlibraryinjection.md │ │ ├── chef_correctness_invalidcookbookname.md │ │ ├── chef_correctness_invaliddefaultaction.md │ │ ├── chef_correctness_invalidnotificationresource.md │ │ ├── chef_correctness_invalidnotificationtiming.md │ │ ├── chef_correctness_invalidplatformfamilyhelper.md │ │ ├── chef_correctness_invalidplatformfamilyincase.md │ │ ├── chef_correctness_invalidplatformhelper.md │ │ ├── chef_correctness_invalidplatformincase.md │ │ ├── chef_correctness_invalidplatformmetadata.md │ │ ├── chef_correctness_invalidplatformvalueforplatformfamilyhelper.md │ │ ├── chef_correctness_invalidplatformvalueforplatformhelper.md │ │ ├── chef_correctness_invalidversionmetadata.md │ │ ├── chef_correctness_lazyevalnodeattributedefaults.md │ │ ├── chef_correctness_lazyinresourceguard.md │ │ ├── chef_correctness_macosuserdefaultsinvalidtype.md │ │ ├── chef_correctness_malformedplatformvalueforplatformhelper.md │ │ ├── chef_correctness_metadatamalformeddepends.md │ │ ├── chef_correctness_metadatamissingname.md │ │ ├── chef_correctness_metadatamissingversion.md │ │ ├── chef_correctness_nodenormal.md │ │ ├── chef_correctness_nodenormalunless.md │ │ ├── chef_correctness_notifiesactionnotsymbol.md │ │ ├── chef_correctness_octalmodeasstring.md │ │ ├── chef_correctness_opensslpasswordhelpers.md │ │ ├── chef_correctness_powershellfileexists.md │ │ ├── chef_correctness_powershellscriptdeletefile.md │ │ ├── chef_correctness_propertywithouttype.md │ │ ├── chef_correctness_resourcesetsinternalproperties.md │ │ ├── chef_correctness_resourcesetsnameproperty.md │ │ ├── chef_correctness_resourcewithnoneaction.md │ │ ├── chef_correctness_scopedfileexist.md │ │ ├── chef_correctness_serviceresource.md │ │ ├── chef_correctness_supportsmustbefloat.md │ │ ├── chef_correctness_tmppath.md │ │ ├── chef_deprecations_chefdkgenerators.md │ │ ├── chef_deprecations_cheffile.md │ │ ├── chef_deprecations_chefhandlerrecipe.md │ │ ├── chef_deprecations_chefhandlerusessupports.md │ │ ├── chef_deprecations_chefrewind.md │ │ ├── chef_deprecations_chefshellout.md │ │ ├── chef_deprecations_chefspeccoveragereport.md │ │ ├── chef_deprecations_chefspeclegacyrunner.md │ │ ├── chef_deprecations_chefsugarhelpers.md │ │ ├── chef_deprecations_chefwindowsplatformhelper.md │ │ ├── chef_deprecations_chocolateypackageuninstallaction.md │ │ ├── chef_deprecations_cookbookdependsoncompatresource.md │ │ ├── chef_deprecations_cookbookdependsonpartialsearch.md │ │ ├── chef_deprecations_cookbookdependsonpoise.md │ │ ├── chef_deprecations_cookbooksdependsonself.md │ │ ├── chef_deprecations_delivery.md │ │ ├── chef_deprecations_dependsonchefnginxcookbook.md │ │ ├── chef_deprecations_dependsonchefreportingcookbook.md │ │ ├── chef_deprecations_dependsonomnibusupdatercookbook.md │ │ ├── chef_deprecations_deprecatedchefspecplatform.md │ │ ├── chef_deprecations_deprecatedplatformmethods.md │ │ ├── chef_deprecations_deprecatedshelloutmethods.md │ │ ├── chef_deprecations_deprecatedsudoactions.md │ │ ├── chef_deprecations_deprecatedwindowsversioncheck.md │ │ ├── chef_deprecations_deprecatedyumrepositoryactions.md │ │ ├── chef_deprecations_deprecatedyumrepositoryproperties.md │ │ ├── chef_deprecations_easyinstallresource.md │ │ ├── chef_deprecations_eolauditmodeusage.md │ │ ├── chef_deprecations_epicfail.md │ │ ├── chef_deprecations_erlcallresource.md │ │ ├── chef_deprecations_executepathproperty.md │ │ ├── chef_deprecations_executerelativecreateswithoutcwd.md │ │ ├── chef_deprecations_foodcriticfile.md │ │ ├── chef_deprecations_foodcritictesting.md │ │ ├── chef_deprecations_hwrpwithoutprovides.md │ │ ├── chef_deprecations_hwrpwithoutunifiedtrue.md │ │ ├── chef_deprecations_includingxmlrubyrecipe.md │ │ ├── chef_deprecations_includingyumdnfcompatrecipe.md │ │ ├── chef_deprecations_launchddeprecatedhashproperty.md │ │ ├── chef_deprecations_legacynotifysyntax.md │ │ ├── chef_deprecations_legacyyumcookbookrecipes.md │ │ ├── chef_deprecations_librarianchefspec.md │ │ ├── chef_deprecations_localedeprecatedlcallproperty.md │ │ ├── chef_deprecations_logresourcenotifications.md │ │ ├── chef_deprecations_macosuserdefaultsglobalproperty.md │ │ ├── chef_deprecations_namepropertywithdefaultvalue.md │ │ ├── chef_deprecations_nodedeepfetch.md │ │ ├── chef_deprecations_nodemethodsinsteadofattributes.md │ │ ├── chef_deprecations_nodeset.md │ │ ├── chef_deprecations_nodesetunless.md │ │ ├── chef_deprecations_nodesetwithoutlevel.md │ │ ├── chef_deprecations_partialsearchclassusage.md │ │ ├── chef_deprecations_partialsearchhelperusage.md │ │ ├── chef_deprecations_poisearchiveusage.md │ │ ├── chef_deprecations_policyfilecommunitysource.md │ │ ├── chef_deprecations_powershellcookbookhelpers.md │ │ ├── chef_deprecations_requirerecipe.md │ │ ├── chef_deprecations_resourceinheritsfromcompatresource.md │ │ ├── chef_deprecations_resourceoverridesprovidesmethod.md │ │ ├── chef_deprecations_resourceusesdslnamemethod.md │ │ ├── chef_deprecations_resourceusesonlyresourcename.md │ │ ├── chef_deprecations_resourceusesproviderbasemethod.md │ │ ├── chef_deprecations_resourceusesupdatedmethod.md │ │ ├── chef_deprecations_resourcewithoutunifiedtrue.md │ │ ├── chef_deprecations_ruby27keywordargumentwarnings.md │ │ ├── chef_deprecations_rubyblockcreateaction.md │ │ ├── chef_deprecations_searchusespositionalparameters.md │ │ ├── chef_deprecations_useautomaticresourcename.md │ │ ├── chef_deprecations_useinlineresourcesdefined.md │ │ ├── chef_deprecations_userdeprecatedsupportsproperty.md │ │ ├── chef_deprecations_useschefresthelpers.md │ │ ├── chef_deprecations_usesdeprecatedmixins.md │ │ ├── chef_deprecations_usesruncommandhelper.md │ │ ├── chef_deprecations_useyamldump.md │ │ ├── chef_deprecations_verifypropertyusesfileexpansion.md │ │ ├── chef_deprecations_windowsfeatureservermanagercmd.md │ │ ├── chef_deprecations_windowspackageinstallertypestring.md │ │ ├── chef_deprecations_windowstaskchangeaction.md │ │ ├── chef_deprecations_windowsversionhelpers.md │ │ ├── chef_effortless_berksfile.md │ │ ├── chef_effortless_chefvaultused.md │ │ ├── chef_effortless_cookbookusesdatabags.md │ │ ├── chef_effortless_cookbookusesenvironments.md │ │ ├── chef_effortless_cookbookusespolicygroups.md │ │ ├── chef_effortless_cookbookusesroles.md │ │ ├── chef_effortless_cookbookusessearch.md │ │ ├── chef_effortless_dependschefvault.md │ │ ├── chef_effortless_searchforenvironmentsorroles.md │ │ ├── chef_modernize_actionmethodinresource.md │ │ ├── chef_modernize_allowedactionsfrominitialize.md │ │ ├── chef_modernize_chefgemnokogiri.md │ │ ├── chef_modernize_classevalactionclass.md │ │ ├── chef_modernize_conditionalusingtest.md │ │ ├── chef_modernize_crondfileortemplate.md │ │ ├── chef_modernize_cronmanageresource.md │ │ ├── chef_modernize_customresourcewithattributes.md │ │ ├── chef_modernize_databaghelpers.md │ │ ├── chef_modernize_declareactionclass.md │ │ ├── chef_modernize_defaultactionfrominitialize.md │ │ ├── chef_modernize_defineschefspecmatchers.md │ │ ├── chef_modernize_definitions.md │ │ ├── chef_modernize_dependsonchefvaultcookbook.md │ │ ├── chef_modernize_dependsonchocolateycookbooks.md │ │ ├── chef_modernize_dependsonkernelmodulecookbook.md │ │ ├── chef_modernize_dependsonlocalecookbook.md │ │ ├── chef_modernize_dependsonopensslcookbook.md │ │ ├── chef_modernize_dependsontimezonelwrpcookbook.md │ │ ├── chef_modernize_dependsonwindowsfirewallcookbook.md │ │ ├── chef_modernize_dependsonzyppercookbook.md │ │ ├── chef_modernize_dslincludeinresource.md │ │ ├── chef_modernize_emptyresourceinitializemethod.md │ │ ├── chef_modernize_executeaptupdate.md │ │ ├── chef_modernize_executescexe.md │ │ ├── chef_modernize_executesleep.md │ │ ├── chef_modernize_executesysctl.md │ │ ├── chef_modernize_executetzutil.md │ │ ├── chef_modernize_foodcriticcomments.md │ │ ├── chef_modernize_ifprovidesdefaultaction.md │ │ ├── chef_modernize_includingaptdefaultrecipe.md │ │ ├── chef_modernize_includingmixinshelloutinresources.md │ │ ├── chef_modernize_includingohaidefaultrecipe.md │ │ ├── chef_modernize_includingwindowsdefaultrecipe.md │ │ ├── chef_modernize_legacyberksfilesource.md │ │ ├── chef_modernize_libarchivefileresource.md │ │ ├── chef_modernize_macosxuserdefaults.md │ │ ├── chef_modernize_minitesthandlerusage.md │ │ ├── chef_modernize_nodeinitpackage.md │ │ ├── chef_modernize_noderolesinclude.md │ │ ├── chef_modernize_opensslrsakeyresource.md │ │ ├── chef_modernize_opensslx509resource.md │ │ ├── chef_modernize_osxconfigprofileresource.md │ │ ├── chef_modernize_powershellguardinterpreter.md │ │ ├── chef_modernize_powershellinstallpackage.md │ │ ├── chef_modernize_powershellinstallwindowsfeature.md │ │ ├── chef_modernize_powershellscriptexpandarchive.md │ │ ├── chef_modernize_propertywithnameattribute.md │ │ ├── chef_modernize_providesfrominitialize.md │ │ ├── chef_modernize_resourceforcingcompiletime.md │ │ ├── chef_modernize_resourcenamefrominitialize.md │ │ ├── chef_modernize_respondtocompiletime.md │ │ ├── chef_modernize_respondtoinmetadata.md │ │ ├── chef_modernize_respondtoprovides.md │ │ ├── chef_modernize_respondtoresourcename.md │ │ ├── chef_modernize_setorreturninresources.md │ │ ├── chef_modernize_sevenziparchiveresource.md │ │ ├── chef_modernize_shellouthelper.md │ │ ├── chef_modernize_shellouttochocolatey.md │ │ ├── chef_modernize_simplifyaptppasetup.md │ │ ├── chef_modernize_sysctlparamresource.md │ │ ├── chef_modernize_unnecessarydependschef14.md │ │ ├── chef_modernize_unnecessarydependschef15.md │ │ ├── chef_modernize_unnecessarymixlibshelloutrequire.md │ │ ├── chef_modernize_usebuildessentialresource.md │ │ ├── chef_modernize_usecheflanguagecloudhelpers.md │ │ ├── chef_modernize_usecheflanguageenvhelpers.md │ │ ├── chef_modernize_usecheflanguagesystemdhelper.md │ │ ├── chef_modernize_usemultipackageinstalls.md │ │ ├── chef_modernize_userequirerelative.md │ │ ├── chef_modernize_useszypperrepo.md │ │ ├── chef_modernize_whyrunsupportedtrue.md │ │ ├── chef_modernize_windowsregistryuac.md │ │ ├── chef_modernize_windowsscresource.md │ │ ├── chef_modernize_windowszipfileusage.md │ │ ├── chef_modernize_zipfileresource.md │ │ ├── chef_redundantcode_aptrepositorydistributiondefault.md │ │ ├── chef_redundantcode_aptrepositorynotifiesaptupdate.md │ │ ├── chef_redundantcode_attributemetadata.md │ │ ├── chef_redundantcode_conflictsmetadata.md │ │ ├── chef_redundantcode_customresourcewithallowedactions.md │ │ ├── chef_redundantcode_doublecompiletime.md │ │ ├── chef_redundantcode_groupingmetadata.md │ │ ├── chef_redundantcode_longdescriptionmetadata.md │ │ ├── chef_redundantcode_multipleplatformchecks.md │ │ ├── chef_redundantcode_namepropertyisrequired.md │ │ ├── chef_redundantcode_ohaiattributetostring.md │ │ ├── chef_redundantcode_propertysplatregex.md │ │ ├── chef_redundantcode_propertywithrequiredanddefault.md │ │ ├── chef_redundantcode_providesmetadata.md │ │ ├── chef_redundantcode_recipemetadata.md │ │ ├── chef_redundantcode_replacesmetadata.md │ │ ├── chef_redundantcode_resourcewithnothingaction.md │ │ ├── chef_redundantcode_sensitivepropertyinresource.md │ │ ├── chef_redundantcode_stringpropertywithnildefault.md │ │ ├── chef_redundantcode_suggestsmetadata.md │ │ ├── chef_redundantcode_unnecessarydesiredstate.md │ │ ├── chef_redundantcode_unnecessarynameproperty.md │ │ ├── chef_redundantcode_usecreateifmissing.md │ │ ├── chef_security_sshprivatekey.md │ │ ├── chef_sharing_defaultmetadatamaintainer.md │ │ ├── chef_sharing_emptymetadatafield.md │ │ ├── chef_sharing_includepropertydescriptions.md │ │ ├── chef_sharing_includeresourcedescriptions.md │ │ ├── chef_sharing_includeresourceexamples.md │ │ ├── chef_sharing_insecurecookbookurl.md │ │ ├── chef_sharing_invalidlicensestring.md │ │ ├── chef_style_attributekeys.md │ │ ├── chef_style_chefwhaaat.md │ │ ├── chef_style_commentformat.md │ │ ├── chef_style_commentsentencespacing.md │ │ ├── chef_style_copyrightcommentformat.md │ │ ├── chef_style_defaultcopyrightcomments.md │ │ ├── chef_style_filemode.md │ │ ├── chef_style_immediatenotificationtiming.md │ │ ├── chef_style_includerecipewithparentheses.md │ │ ├── chef_style_negatingonlyif.md │ │ ├── chef_style_overlycomplexsupportsdependsmetadata.md │ │ ├── chef_style_simplifyplatformmajorversioncheck.md │ │ ├── chef_style_trueclassfalseclassresourceproperties.md │ │ ├── chef_style_unnecessaryoscheck.md │ │ ├── chef_style_unnecessaryplatformcasestatement.md │ │ ├── chef_style_useplatformhelpers.md │ │ ├── inspec_deprecations_attributedefault.md │ │ └── inspec_deprecations_attributehelper.md ├── go.mod ├── go.sum └── layouts │ ├── index.html │ └── partials │ ├── build_cookstyle_cop.html │ └── build_cookstyle_cops.html ├── go.mod ├── go.sum ├── infra_resources_readme.md ├── layouts ├── _default │ ├── home.sitemap-main.xml │ ├── infra_resource.html │ ├── infra_resources_all.html │ └── sitemap.xml ├── index.html ├── partials │ ├── infra_resource_data.html │ ├── infra_resource_toc.html │ ├── infra_resources_all_toc.html │ └── version_numbers.html └── shortcodes │ ├── chef_automate_mark.html │ └── example_fqdn.html ├── netlify.toml ├── package.hugo.json ├── package.json ├── scripts ├── local-server.sh ├── netlify-branch-deploy.sh ├── netlify-deploy-preview.sh └── netlify-deploy-production.sh ├── static ├── images │ ├── 360 │ │ ├── select-role.png │ │ └── setting-expiry-token.png │ ├── ChefServerDetails.png │ ├── DashboardsPage.png │ ├── EventPage.png │ ├── NotSecurePage.png │ ├── OrgPageDetails.png │ ├── OutputPage.png │ ├── WelcomePage.png │ ├── a2_docs_banner.svg │ ├── add_DCO.png │ ├── audit_run.png │ ├── automate-dashboard.png │ ├── automate-fips.png │ ├── automate_architecture.svg │ ├── automate_event_feed_empty.png │ ├── automate_insecure_page.png │ ├── automate_signin.png │ ├── automate_welcome.png │ ├── aws_inbound_rule.png │ ├── aws_inbound_rules_edit.png │ ├── aws_resources.png │ ├── aws_security_group.png │ ├── az_automate_basics.png │ ├── az_automate_complete.png │ ├── az_automate_create.png │ ├── az_automate_custom_settings.png │ ├── az_automate_essentials.png │ ├── az_automate_overview.png │ ├── az_automate_progress.png │ ├── az_automate_review.png │ ├── az_continue.png │ ├── az_getitnow.png │ ├── az_home.png │ ├── az_signin.jpg │ ├── az_signin.png │ ├── az_ssh.png │ ├── az_test_continue.png │ ├── az_test_drive.png │ ├── az_test_goto.png │ ├── az_test_progress.png │ ├── az_test_ready.png │ ├── az_testdrive.png │ ├── chef_automate_add_org_page.png │ ├── chef_automate_add_server.png │ ├── chef_automate_full.png │ ├── chef_automate_login.png │ ├── chef_automate_node_uuid.png │ ├── chef_automate_single_server.png │ ├── chef_bootstrap.png │ ├── chef_overview.svg │ ├── chef_overview_2020.svg │ ├── chef_run.svg │ ├── chef_server_ha_aws.svg │ ├── chef_server_replication.png │ ├── chef_server_replication_many.png │ ├── chef_server_replication_sequence.png │ ├── collaborator_permission.png │ ├── consumer_tests.png │ ├── delivery_build_cookbook.svg │ ├── delivery_full_workflow.svg │ ├── delivery_integrate_smtp.svg │ ├── delivery_partial_workflow.svg │ ├── delivery_pipeline_attributes.svg │ ├── dependency_graph_base_with_xy.svg │ ├── developers_menu.png │ ├── download_starter_kit.png │ ├── dragon.png │ ├── edit_on_github.png │ ├── file_in_repo.png │ ├── github_menu.png │ ├── github_user_menu.png │ ├── hero.png │ ├── hosted_chef_welcome.png │ ├── icon_chef_automate.svg │ ├── icon_chef_client.svg │ ├── icon_chef_server.svg │ ├── icon_chef_supermarket.svg │ ├── icon_chefspec.svg │ ├── icon_cookbook.svg │ ├── icon_cookbook_attributes.svg │ ├── icon_cookbook_files.svg │ ├── icon_cookbook_libraries.svg │ ├── icon_cookbook_metadata.svg │ ├── icon_cookbook_recipes.svg │ ├── icon_cookbook_resources.svg │ ├── icon_cookbook_templates.svg │ ├── icon_cookbook_tests.svg │ ├── icon_cookbook_versions.svg │ ├── icon_ctl_chef.svg │ ├── icon_ctl_knife.svg │ ├── icon_data_bags.svg │ ├── icon_environments.svg │ ├── icon_kitchen.svg │ ├── icon_manage.svg │ ├── icon_node.svg │ ├── icon_node_type_cloud_public.svg │ ├── icon_node_type_container.svg │ ├── icon_node_type_network_device.svg │ ├── icon_node_type_server.svg │ ├── icon_node_virtual_machine.svg │ ├── icon_ohai.svg │ ├── icon_policy.svg │ ├── icon_repository.svg │ ├── icon_roles.svg │ ├── icon_ruby.svg │ ├── icon_run_lists.svg │ ├── icon_search.svg │ ├── icon_server_groups.svg │ ├── icon_server_organization.svg │ ├── icon_server_users.svg │ ├── icon_workstation.svg │ ├── image_style_guide_example.png │ ├── includes_windows_environment_variable_path.png │ ├── ms_pass.png │ ├── ms_signin.png │ ├── new_token.png │ ├── overview_chef_attributes_precedence.png │ ├── overview_push_jobs_states.png │ ├── personal_access_token.png │ ├── public_supermarket.png │ ├── saas │ │ ├── add-chef-server-popup-menu.png │ │ ├── saas-aws-console.png │ │ └── saas-status-column.png │ ├── samlattributes.jpg │ ├── server_components.svg │ ├── server_components_postgresql.svg │ ├── server_components_s3.svg │ ├── server_rbac_orgs_groups_and_users.png │ ├── start_chef.png │ ├── start_chef.svg │ ├── step_manage_webui_admin.png │ ├── step_manage_webui_admin_organization_reset_key.png │ ├── step_manage_webui_admin_organization_reset_key_regenerated.png │ ├── step_manage_webui_node_attributes_edit.png │ ├── step_manage_webui_node_delete.png │ ├── step_manage_webui_node_details_set_environment.png │ ├── step_manage_webui_node_run_list_add_role_or_recipe.png │ ├── step_manage_webui_node_run_list_remove_role_or_recipe.png │ ├── step_manage_webui_node_run_list_view_current.png │ ├── step_manage_webui_node_tags_add.png │ ├── step_manage_webui_node_tags_delete.png │ ├── step_manage_webui_nodes.png │ ├── step_manage_webui_nodes_search.png │ ├── step_manage_webui_nodes_view_run_list.png │ ├── step_manage_webui_nodes_view_tags.png │ ├── step_manage_webui_policy.png │ ├── step_manage_webui_policy_client_add.png │ ├── step_manage_webui_policy_client_add_private_key.png │ ├── step_manage_webui_policy_client_add_private_key_download.png │ ├── step_manage_webui_policy_client_delete.png │ ├── step_manage_webui_policy_client_reset_key_copy.png │ ├── step_manage_webui_policy_client_reset_key_download.png │ ├── step_manage_webui_policy_cookbook_download.png │ ├── step_manage_webui_policy_cookbook_file_view.png │ ├── step_manage_webui_policy_cookbook_view_details.png │ ├── step_manage_webui_policy_data_bag_add.png │ ├── step_manage_webui_policy_data_bag_add_item.png │ ├── step_manage_webui_policy_data_bag_delete.png │ ├── step_manage_webui_policy_data_bag_delete_item.png │ ├── step_manage_webui_policy_data_bag_edit_item.png │ ├── step_manage_webui_policy_environment_add.png │ ├── step_manage_webui_policy_environment_add_constraint.png │ ├── step_manage_webui_policy_environment_add_default_attribute.png │ ├── step_manage_webui_policy_environment_add_override_attribute.png │ ├── step_manage_webui_policy_environment_delete.png │ ├── step_manage_webui_policy_environment_edit_attribute.png │ ├── step_manage_webui_policy_role_add.png │ ├── step_manage_webui_policy_role_add_default_attribute.png │ ├── step_manage_webui_policy_role_add_override_attribute.png │ ├── step_manage_webui_policy_role_add_run_list.png │ ├── step_manage_webui_policy_role_delete.png │ ├── step_manage_webui_policy_role_edit_attribute.png │ ├── step_manage_webui_policy_role_edit_run_list.png │ ├── step_manage_webui_policy_validation_add.png │ ├── step_manage_webui_policy_validation_delete.png │ ├── step_manage_webui_policy_validation_view_details.png │ ├── supermarket_wrapper_cookbook.svg │ └── token_created.png └── package-lock.json └── tools └── vale ├── .vale-config └── 3-Hugo.ini ├── .vale-github-action.ini ├── Microsoft ├── AMPM.yml ├── Accessibility.yml ├── Acronyms.yml ├── Adverbs.yml ├── Auto.yml ├── Avoid.yml ├── ComplexWords.yml ├── Contractions.yml ├── Dashes.yml ├── DateFormat.yml ├── DateNumbers.yml ├── DateOrder.yml ├── Ellipses.yml ├── FirstPerson.yml ├── Foreign.yml ├── Gender.yml ├── GenderBias.yml ├── GeneralURL.yml ├── HeadingAcronyms.yml ├── HeadingColons.yml ├── HeadingPunctuation.yml ├── Headings.yml ├── Hyphens.yml ├── Negative.yml ├── Ordinal.yml ├── OxfordComma.yml ├── Passive.yml ├── Percentages.yml ├── Quotes.yml ├── RangeFormat.yml ├── RangeTime.yml ├── Ranges.yml ├── Semicolon.yml ├── SentenceLength.yml ├── Spacing.yml ├── Suspended.yml ├── Terms.yml ├── URLFormat.yml ├── Units.yml ├── Vocab.yml ├── We.yml ├── Wordiness.yml └── meta.json ├── chef ├── brands.yml ├── chef_products.yml ├── foreign.yml ├── inclusive.yml ├── policyfile.yml └── ui.yaml ├── config └── vocabularies │ └── Chef │ └── accept.txt ├── markdownlint-rules.yaml ├── vale.tmpl ├── vale ├── Annotations.yml ├── Editorializing.yml ├── Hedging.yml ├── Litotes.yml ├── Redundancy.yml └── Uncomparables.yml └── write-good ├── Cliches.yml ├── E-Prime.yml ├── Illusions.yml ├── Passive.yml ├── README.md ├── So.yml ├── ThereIs.yml ├── TooWordy.yml ├── Weasel.yml └── meta.json /.expeditor/buildkite/hugo_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.expeditor/buildkite/hugo_lint.sh -------------------------------------------------------------------------------- /.expeditor/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.expeditor/config.yml -------------------------------------------------------------------------------- /.expeditor/verify.pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.expeditor/verify.pipeline.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/ISSUE_TEMPLATE/docs-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.vale.ini -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/.yamllint -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/README.md -------------------------------------------------------------------------------- /_vendor/github.com/chef/chef-docs-theme/assets/sass/partials/_inspec_resources.scss: -------------------------------------------------------------------------------- 1 | #filter-inspec { 2 | max-width: 500px; 3 | } -------------------------------------------------------------------------------- /_vendor/github.com/chef/chef-docs-theme/layouts/shortcodes/ol-styled.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner }} 3 |
4 | -------------------------------------------------------------------------------- /_vendor/github.com/chef/chef-docs-theme/layouts/shortcodes/svg.html: -------------------------------------------------------------------------------- 1 | {{ readFile (.Get "file") | safeHTML }} 2 | -------------------------------------------------------------------------------- /_vendor/github.com/chef/chef-workstation/docs-chef-io/static/images/chef-workstation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_vendor/github.com/chef/desktop-config/docs-chef-io/static/images/desktop-config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_vendor/github.com/chef/samples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/_vendor/github.com/chef/samples/LICENSE -------------------------------------------------------------------------------- /_vendor/github.com/chef/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/_vendor/github.com/chef/samples/README.md -------------------------------------------------------------------------------- /_vendor/github.com/chef/samples/sample.text: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /_vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/_vendor/modules.txt -------------------------------------------------------------------------------- /archetypes/all_the_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/archetypes/all_the_resources.md -------------------------------------------------------------------------------- /archetypes/cookstyle_cop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/archetypes/cookstyle_cop.md -------------------------------------------------------------------------------- /archetypes/cookstyle_cops_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/archetypes/cookstyle_cops_all.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /archetypes/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/archetypes/resource.md -------------------------------------------------------------------------------- /config/_default/caches.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/config/_default/caches.toml -------------------------------------------------------------------------------- /config/_default/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/config/_default/hugo.toml -------------------------------------------------------------------------------- /config/_default/menu.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/config/_default/menu.toml -------------------------------------------------------------------------------- /config/_default/module.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/config/_default/module.toml -------------------------------------------------------------------------------- /config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/config/_default/params.toml -------------------------------------------------------------------------------- /content/360/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/360/_index.md -------------------------------------------------------------------------------- /content/360/saas/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/360/saas/_index.md -------------------------------------------------------------------------------- /content/360/saas/get_started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/360/saas/get_started/_index.md -------------------------------------------------------------------------------- /content/360/saas/get_started/set_up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/360/saas/get_started/set_up.md -------------------------------------------------------------------------------- /content/360/saas/reusable_text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/360/saas/reusable_text/index.md -------------------------------------------------------------------------------- /content/360/saas/system_requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/360/saas/system_requirements.md -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/accumulators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/accumulators.md -------------------------------------------------------------------------------- /content/api_omnitruck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/api_omnitruck.md -------------------------------------------------------------------------------- /content/attribute_arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/attribute_arrays.md -------------------------------------------------------------------------------- /content/attribute_persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/attribute_persistence.md -------------------------------------------------------------------------------- /content/attribute_precedence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/attribute_precedence.md -------------------------------------------------------------------------------- /content/attribute_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/attribute_sources.md -------------------------------------------------------------------------------- /content/attribute_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/attribute_types.md -------------------------------------------------------------------------------- /content/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/attributes.md -------------------------------------------------------------------------------- /content/automate/cli_chef_automate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/automate/cli_chef_automate.md -------------------------------------------------------------------------------- /content/automate/cli_chef_automate_ha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/automate/cli_chef_automate_ha.md -------------------------------------------------------------------------------- /content/aws_marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/aws_marketplace.md -------------------------------------------------------------------------------- /content/azure_chef_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/azure_chef_cli.md -------------------------------------------------------------------------------- /content/azure_cwa_cloud_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/azure_cwa_cloud_shell.md -------------------------------------------------------------------------------- /content/azure_marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/azure_marketplace.md -------------------------------------------------------------------------------- /content/azure_powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/azure_powershell.md -------------------------------------------------------------------------------- /content/azure_testdrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/azure_testdrive.md -------------------------------------------------------------------------------- /content/chef_client_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_client_overview.md -------------------------------------------------------------------------------- /content/chef_client_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_client_security.md -------------------------------------------------------------------------------- /content/chef_compliance_phase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_compliance_phase.md -------------------------------------------------------------------------------- /content/chef_deprecations_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_deprecations_client.md -------------------------------------------------------------------------------- /content/chef_install_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_install_script.md -------------------------------------------------------------------------------- /content/chef_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_license.md -------------------------------------------------------------------------------- /content/chef_license_accept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_license_accept.md -------------------------------------------------------------------------------- /content/chef_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_overview.md -------------------------------------------------------------------------------- /content/chef_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_repo.md -------------------------------------------------------------------------------- /content/chef_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_search.md -------------------------------------------------------------------------------- /content/chef_solo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_solo.md -------------------------------------------------------------------------------- /content/chef_system_requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/chef_system_requirements.md -------------------------------------------------------------------------------- /content/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/community.md -------------------------------------------------------------------------------- /content/community_contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/community_contributions.md -------------------------------------------------------------------------------- /content/community_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/community_guidelines.md -------------------------------------------------------------------------------- /content/config_rb_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/config_rb_client.md -------------------------------------------------------------------------------- /content/config_rb_manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/config_rb_manage.md -------------------------------------------------------------------------------- /content/config_rb_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/config_rb_metadata.md -------------------------------------------------------------------------------- /content/config_rb_policyfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/config_rb_policyfile.md -------------------------------------------------------------------------------- /content/config_rb_solo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/config_rb_solo.md -------------------------------------------------------------------------------- /content/cookbook_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/cookbook_repo.md -------------------------------------------------------------------------------- /content/cookbook_versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/cookbook_versioning.md -------------------------------------------------------------------------------- /content/cookbooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/cookbooks.md -------------------------------------------------------------------------------- /content/ctl_chef_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/ctl_chef_client.md -------------------------------------------------------------------------------- /content/ctl_chef_solo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/ctl_chef_solo.md -------------------------------------------------------------------------------- /content/ctl_manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/ctl_manage.md -------------------------------------------------------------------------------- /content/ctl_ohai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/ctl_ohai.md -------------------------------------------------------------------------------- /content/custom_resource_glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/custom_resource_glossary.md -------------------------------------------------------------------------------- /content/custom_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/custom_resources.md -------------------------------------------------------------------------------- /content/custom_resources_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/custom_resources_notes.md -------------------------------------------------------------------------------- /content/data_bags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/data_bags.md -------------------------------------------------------------------------------- /content/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/debug.md -------------------------------------------------------------------------------- /content/definitions_to_custom_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/definitions_to_custom_resources.md -------------------------------------------------------------------------------- /content/deprecations_attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_attributes.md -------------------------------------------------------------------------------- /content/deprecations_chef_rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_chef_rest.md -------------------------------------------------------------------------------- /content/deprecations_deploy_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_deploy_resource.md -------------------------------------------------------------------------------- /content/deprecations_easy_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_easy_install.md -------------------------------------------------------------------------------- /content/deprecations_epic_fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_epic_fail.md -------------------------------------------------------------------------------- /content/deprecations_erl_call_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_erl_call_resource.md -------------------------------------------------------------------------------- /content/deprecations_exit_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_exit_code.md -------------------------------------------------------------------------------- /content/deprecations_internal_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_internal_api.md -------------------------------------------------------------------------------- /content/deprecations_json_auto_inflate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_json_auto_inflate.md -------------------------------------------------------------------------------- /content/deprecations_legacy_hwrp_mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_legacy_hwrp_mixins.md -------------------------------------------------------------------------------- /content/deprecations_local_listen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_local_listen.md -------------------------------------------------------------------------------- /content/deprecations_locale_lc_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_locale_lc_all.md -------------------------------------------------------------------------------- /content/deprecations_map_collision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_map_collision.md -------------------------------------------------------------------------------- /content/deprecations_ohai_amazon_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_amazon_linux.md -------------------------------------------------------------------------------- /content/deprecations_ohai_cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_cloud.md -------------------------------------------------------------------------------- /content/deprecations_ohai_cloud_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_cloud_v2.md -------------------------------------------------------------------------------- /content/deprecations_ohai_digitalocean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_digitalocean.md -------------------------------------------------------------------------------- /content/deprecations_ohai_filesystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_filesystem.md -------------------------------------------------------------------------------- /content/deprecations_ohai_filesystem_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_filesystem_v2.md -------------------------------------------------------------------------------- /content/deprecations_ohai_ipscopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_ipscopes.md -------------------------------------------------------------------------------- /content/deprecations_ohai_legacy_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_legacy_config.md -------------------------------------------------------------------------------- /content/deprecations_ohai_sigar_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_sigar_plugins.md -------------------------------------------------------------------------------- /content/deprecations_ohai_v6_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_v6_plugins.md -------------------------------------------------------------------------------- /content/deprecations_ohai_windows_cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_ohai_windows_cpu.md -------------------------------------------------------------------------------- /content/deprecations_resource_cloning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_resource_cloning.md -------------------------------------------------------------------------------- /content/deprecations_run_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_run_command.md -------------------------------------------------------------------------------- /content/deprecations_shell_out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_shell_out.md -------------------------------------------------------------------------------- /content/deprecations_supports_property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_supports_property.md -------------------------------------------------------------------------------- /content/deprecations_unified_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_unified_mode.md -------------------------------------------------------------------------------- /content/deprecations_verify_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/deprecations_verify_file.md -------------------------------------------------------------------------------- /content/download/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/download/_index.md -------------------------------------------------------------------------------- /content/download/commercial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/download/commercial.md -------------------------------------------------------------------------------- /content/download/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/download/community.md -------------------------------------------------------------------------------- /content/dsl_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/dsl_handler.md -------------------------------------------------------------------------------- /content/enterprise_chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/enterprise_chef.md -------------------------------------------------------------------------------- /content/enterprise_community_chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/enterprise_community_chef.md -------------------------------------------------------------------------------- /content/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/environments.md -------------------------------------------------------------------------------- /content/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/errors.md -------------------------------------------------------------------------------- /content/feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/feedback.md -------------------------------------------------------------------------------- /content/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/files.md -------------------------------------------------------------------------------- /content/fips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/fips.md -------------------------------------------------------------------------------- /content/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/glossary.md -------------------------------------------------------------------------------- /content/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/google.md -------------------------------------------------------------------------------- /content/habitat/habitat_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/habitat/habitat_cli.md -------------------------------------------------------------------------------- /content/habitat/service_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/habitat/service_templates.md -------------------------------------------------------------------------------- /content/handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/handlers.md -------------------------------------------------------------------------------- /content/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/helpers.md -------------------------------------------------------------------------------- /content/infra_language/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/_index.md -------------------------------------------------------------------------------- /content/infra_language/checking_clouds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/checking_clouds.md -------------------------------------------------------------------------------- /content/infra_language/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/logging.md -------------------------------------------------------------------------------- /content/infra_language/node_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/node_tags.md -------------------------------------------------------------------------------- /content/infra_language/registry_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/registry_keys.md -------------------------------------------------------------------------------- /content/infra_language/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/search.md -------------------------------------------------------------------------------- /content/infra_language/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/secrets.md -------------------------------------------------------------------------------- /content/infra_language/shelling_out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/shelling_out.md -------------------------------------------------------------------------------- /content/infra_language/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/infra_language/windows.md -------------------------------------------------------------------------------- /content/inspec/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/_index.md -------------------------------------------------------------------------------- /content/inspec/audit_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/audit_log.md -------------------------------------------------------------------------------- /content/inspec/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/cli.md -------------------------------------------------------------------------------- /content/inspec/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/config.md -------------------------------------------------------------------------------- /content/inspec/inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/inputs.md -------------------------------------------------------------------------------- /content/inspec/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/install.md -------------------------------------------------------------------------------- /content/inspec/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/license.md -------------------------------------------------------------------------------- /content/inspec/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/matchers.md -------------------------------------------------------------------------------- /content/inspec/parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/parallel.md -------------------------------------------------------------------------------- /content/inspec/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/plugins.md -------------------------------------------------------------------------------- /content/inspec/profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/profiles.md -------------------------------------------------------------------------------- /content/inspec/reporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/reporters.md -------------------------------------------------------------------------------- /content/inspec/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/shell.md -------------------------------------------------------------------------------- /content/inspec/waivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/inspec/waivers.md -------------------------------------------------------------------------------- /content/install_bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/install_bootstrap.md -------------------------------------------------------------------------------- /content/install_chef_air_gap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/install_chef_air_gap.md -------------------------------------------------------------------------------- /content/install_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/install_windows.md -------------------------------------------------------------------------------- /content/legacy_uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/legacy_uninstall.md -------------------------------------------------------------------------------- /content/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/libraries.md -------------------------------------------------------------------------------- /content/licensing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/licensing/_index.md -------------------------------------------------------------------------------- /content/licensing/accept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/licensing/accept.md -------------------------------------------------------------------------------- /content/licensing/license_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/licensing/license_key.md -------------------------------------------------------------------------------- /content/licensing/reusable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/licensing/reusable/index.md -------------------------------------------------------------------------------- /content/licensing/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/licensing/terms.md -------------------------------------------------------------------------------- /content/lwrp_to_custom_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/lwrp_to_custom_resources.md -------------------------------------------------------------------------------- /content/manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/manage.md -------------------------------------------------------------------------------- /content/manage_uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/manage_uninstall.md -------------------------------------------------------------------------------- /content/nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/nodes.md -------------------------------------------------------------------------------- /content/ohai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/ohai.md -------------------------------------------------------------------------------- /content/ohai_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/ohai_custom.md -------------------------------------------------------------------------------- /content/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/packages.md -------------------------------------------------------------------------------- /content/partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/partials.md -------------------------------------------------------------------------------- /content/platform_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/platform_overview.md -------------------------------------------------------------------------------- /content/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/platforms.md -------------------------------------------------------------------------------- /content/plugin_community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/plugin_community.md -------------------------------------------------------------------------------- /content/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/policy.md -------------------------------------------------------------------------------- /content/policyfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/policyfile.md -------------------------------------------------------------------------------- /content/proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/proxies.md -------------------------------------------------------------------------------- /content/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/quick_start.md -------------------------------------------------------------------------------- /content/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/recipes.md -------------------------------------------------------------------------------- /content/recipes_json_yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/recipes_json_yaml.md -------------------------------------------------------------------------------- /content/redirect_chef_automate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/redirect_chef_automate.md -------------------------------------------------------------------------------- /content/release_notes_360.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_360.md -------------------------------------------------------------------------------- /content/release_notes_automate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_automate.md -------------------------------------------------------------------------------- /content/release_notes_backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_backend.md -------------------------------------------------------------------------------- /content/release_notes_chefdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_chefdk.md -------------------------------------------------------------------------------- /content/release_notes_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_client.md -------------------------------------------------------------------------------- /content/release_notes_download_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_download_apis.md -------------------------------------------------------------------------------- /content/release_notes_habitat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_habitat.md -------------------------------------------------------------------------------- /content/release_notes_habitat_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_habitat_packages.md -------------------------------------------------------------------------------- /content/release_notes_inspec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_inspec.md -------------------------------------------------------------------------------- /content/release_notes_inspec_alibaba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_inspec_alibaba.md -------------------------------------------------------------------------------- /content/release_notes_inspec_aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_inspec_aws.md -------------------------------------------------------------------------------- /content/release_notes_inspec_azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_inspec_azure.md -------------------------------------------------------------------------------- /content/release_notes_inspec_gcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_inspec_gcp.md -------------------------------------------------------------------------------- /content/release_notes_manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_manage.md -------------------------------------------------------------------------------- /content/release_notes_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_server.md -------------------------------------------------------------------------------- /content/release_notes_supermarket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_supermarket.md -------------------------------------------------------------------------------- /content/release_notes_workstation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/release_notes_workstation.md -------------------------------------------------------------------------------- /content/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resource.md -------------------------------------------------------------------------------- /content/resource_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resource_common.md -------------------------------------------------------------------------------- /content/resources/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/_index.md -------------------------------------------------------------------------------- /content/resources/alternatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/alternatives.md -------------------------------------------------------------------------------- /content/resources/apt_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/apt_package.md -------------------------------------------------------------------------------- /content/resources/apt_preference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/apt_preference.md -------------------------------------------------------------------------------- /content/resources/apt_repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/apt_repository.md -------------------------------------------------------------------------------- /content/resources/apt_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/apt_update.md -------------------------------------------------------------------------------- /content/resources/archive_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/archive_file.md -------------------------------------------------------------------------------- /content/resources/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/bash.md -------------------------------------------------------------------------------- /content/resources/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/batch.md -------------------------------------------------------------------------------- /content/resources/bff_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/bff_package.md -------------------------------------------------------------------------------- /content/resources/breakpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/breakpoint.md -------------------------------------------------------------------------------- /content/resources/build_essential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/build_essential.md -------------------------------------------------------------------------------- /content/resources/cab_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/cab_package.md -------------------------------------------------------------------------------- /content/resources/chef_acl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_acl.md -------------------------------------------------------------------------------- /content/resources/chef_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_client.md -------------------------------------------------------------------------------- /content/resources/chef_client_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_client_config.md -------------------------------------------------------------------------------- /content/resources/chef_client_cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_client_cron.md -------------------------------------------------------------------------------- /content/resources/chef_client_launchd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_client_launchd.md -------------------------------------------------------------------------------- /content/resources/chef_container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_container.md -------------------------------------------------------------------------------- /content/resources/chef_data_bag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_data_bag.md -------------------------------------------------------------------------------- /content/resources/chef_data_bag_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_data_bag_item.md -------------------------------------------------------------------------------- /content/resources/chef_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_environment.md -------------------------------------------------------------------------------- /content/resources/chef_gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_gem.md -------------------------------------------------------------------------------- /content/resources/chef_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_group.md -------------------------------------------------------------------------------- /content/resources/chef_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_handler.md -------------------------------------------------------------------------------- /content/resources/chef_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_node.md -------------------------------------------------------------------------------- /content/resources/chef_organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_organization.md -------------------------------------------------------------------------------- /content/resources/chef_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_role.md -------------------------------------------------------------------------------- /content/resources/chef_sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_sleep.md -------------------------------------------------------------------------------- /content/resources/chef_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_user.md -------------------------------------------------------------------------------- /content/resources/chef_vault_secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chef_vault_secret.md -------------------------------------------------------------------------------- /content/resources/chocolatey_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chocolatey_config.md -------------------------------------------------------------------------------- /content/resources/chocolatey_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chocolatey_feature.md -------------------------------------------------------------------------------- /content/resources/chocolatey_installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chocolatey_installer.md -------------------------------------------------------------------------------- /content/resources/chocolatey_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chocolatey_package.md -------------------------------------------------------------------------------- /content/resources/chocolatey_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/chocolatey_source.md -------------------------------------------------------------------------------- /content/resources/cookbook_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/cookbook_file.md -------------------------------------------------------------------------------- /content/resources/cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/cron.md -------------------------------------------------------------------------------- /content/resources/cron_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/cron_access.md -------------------------------------------------------------------------------- /content/resources/cron_d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/cron_d.md -------------------------------------------------------------------------------- /content/resources/csh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/csh.md -------------------------------------------------------------------------------- /content/resources/directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/directory.md -------------------------------------------------------------------------------- /content/resources/dmg_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/dmg_package.md -------------------------------------------------------------------------------- /content/resources/dnf_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/dnf_package.md -------------------------------------------------------------------------------- /content/resources/dpkg_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/dpkg_package.md -------------------------------------------------------------------------------- /content/resources/dsc_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/dsc_resource.md -------------------------------------------------------------------------------- /content/resources/dsc_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/dsc_script.md -------------------------------------------------------------------------------- /content/resources/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/execute.md -------------------------------------------------------------------------------- /content/resources/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/file.md -------------------------------------------------------------------------------- /content/resources/freebsd_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/freebsd_package.md -------------------------------------------------------------------------------- /content/resources/gem_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/gem_package.md -------------------------------------------------------------------------------- /content/resources/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/git.md -------------------------------------------------------------------------------- /content/resources/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/group.md -------------------------------------------------------------------------------- /content/resources/habitat_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/habitat_config.md -------------------------------------------------------------------------------- /content/resources/habitat_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/habitat_install.md -------------------------------------------------------------------------------- /content/resources/habitat_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/habitat_package.md -------------------------------------------------------------------------------- /content/resources/habitat_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/habitat_service.md -------------------------------------------------------------------------------- /content/resources/habitat_sup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/habitat_sup.md -------------------------------------------------------------------------------- /content/resources/habitat_user_toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/habitat_user_toml.md -------------------------------------------------------------------------------- /content/resources/homebrew_cask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/homebrew_cask.md -------------------------------------------------------------------------------- /content/resources/homebrew_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/homebrew_package.md -------------------------------------------------------------------------------- /content/resources/homebrew_tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/homebrew_tap.md -------------------------------------------------------------------------------- /content/resources/homebrew_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/homebrew_update.md -------------------------------------------------------------------------------- /content/resources/hostname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/hostname.md -------------------------------------------------------------------------------- /content/resources/http_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/http_request.md -------------------------------------------------------------------------------- /content/resources/ifconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ifconfig.md -------------------------------------------------------------------------------- /content/resources/inspec_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/inspec_input.md -------------------------------------------------------------------------------- /content/resources/inspec_waiver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/inspec_waiver.md -------------------------------------------------------------------------------- /content/resources/ips_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ips_package.md -------------------------------------------------------------------------------- /content/resources/kernel_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/kernel_module.md -------------------------------------------------------------------------------- /content/resources/ksh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ksh.md -------------------------------------------------------------------------------- /content/resources/launchd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/launchd.md -------------------------------------------------------------------------------- /content/resources/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/link.md -------------------------------------------------------------------------------- /content/resources/locale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/locale.md -------------------------------------------------------------------------------- /content/resources/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/log.md -------------------------------------------------------------------------------- /content/resources/macos_userdefaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/macos_userdefaults.md -------------------------------------------------------------------------------- /content/resources/macosx_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/macosx_service.md -------------------------------------------------------------------------------- /content/resources/macports_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/macports_package.md -------------------------------------------------------------------------------- /content/resources/mdadm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/mdadm.md -------------------------------------------------------------------------------- /content/resources/mount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/mount.md -------------------------------------------------------------------------------- /content/resources/msu_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/msu_package.md -------------------------------------------------------------------------------- /content/resources/notify_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/notify_group.md -------------------------------------------------------------------------------- /content/resources/ohai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ohai.md -------------------------------------------------------------------------------- /content/resources/ohai_hint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ohai_hint.md -------------------------------------------------------------------------------- /content/resources/openbsd_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/openbsd_package.md -------------------------------------------------------------------------------- /content/resources/openssl_dhparam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/openssl_dhparam.md -------------------------------------------------------------------------------- /content/resources/openssl_ec_public_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/openssl_ec_public_key.md -------------------------------------------------------------------------------- /content/resources/openssl_x509_crl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/openssl_x509_crl.md -------------------------------------------------------------------------------- /content/resources/openssl_x509_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/openssl_x509_request.md -------------------------------------------------------------------------------- /content/resources/osx_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/osx_profile.md -------------------------------------------------------------------------------- /content/resources/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/package.md -------------------------------------------------------------------------------- /content/resources/pacman_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/pacman_package.md -------------------------------------------------------------------------------- /content/resources/paludis_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/paludis_package.md -------------------------------------------------------------------------------- /content/resources/perl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/perl.md -------------------------------------------------------------------------------- /content/resources/plist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/plist.md -------------------------------------------------------------------------------- /content/resources/portage_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/portage_package.md -------------------------------------------------------------------------------- /content/resources/powershell_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/powershell_package.md -------------------------------------------------------------------------------- /content/resources/powershell_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/powershell_script.md -------------------------------------------------------------------------------- /content/resources/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/python.md -------------------------------------------------------------------------------- /content/resources/reboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/reboot.md -------------------------------------------------------------------------------- /content/resources/registry_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/registry_key.md -------------------------------------------------------------------------------- /content/resources/remote_directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/remote_directory.md -------------------------------------------------------------------------------- /content/resources/remote_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/remote_file.md -------------------------------------------------------------------------------- /content/resources/rhsm_errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/rhsm_errata.md -------------------------------------------------------------------------------- /content/resources/rhsm_errata_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/rhsm_errata_level.md -------------------------------------------------------------------------------- /content/resources/rhsm_register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/rhsm_register.md -------------------------------------------------------------------------------- /content/resources/rhsm_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/rhsm_repo.md -------------------------------------------------------------------------------- /content/resources/rhsm_subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/rhsm_subscription.md -------------------------------------------------------------------------------- /content/resources/route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/route.md -------------------------------------------------------------------------------- /content/resources/rpm_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/rpm_package.md -------------------------------------------------------------------------------- /content/resources/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ruby.md -------------------------------------------------------------------------------- /content/resources/ruby_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ruby_block.md -------------------------------------------------------------------------------- /content/resources/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/script.md -------------------------------------------------------------------------------- /content/resources/selinux_boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_boolean.md -------------------------------------------------------------------------------- /content/resources/selinux_fcontext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_fcontext.md -------------------------------------------------------------------------------- /content/resources/selinux_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_install.md -------------------------------------------------------------------------------- /content/resources/selinux_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_login.md -------------------------------------------------------------------------------- /content/resources/selinux_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_module.md -------------------------------------------------------------------------------- /content/resources/selinux_permissive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_permissive.md -------------------------------------------------------------------------------- /content/resources/selinux_port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_port.md -------------------------------------------------------------------------------- /content/resources/selinux_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_state.md -------------------------------------------------------------------------------- /content/resources/selinux_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/selinux_user.md -------------------------------------------------------------------------------- /content/resources/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/service.md -------------------------------------------------------------------------------- /content/resources/smartos_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/smartos_package.md -------------------------------------------------------------------------------- /content/resources/snap_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/snap_package.md -------------------------------------------------------------------------------- /content/resources/solaris_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/solaris_package.md -------------------------------------------------------------------------------- /content/resources/ssh_known_hosts_entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/ssh_known_hosts_entry.md -------------------------------------------------------------------------------- /content/resources/subversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/subversion.md -------------------------------------------------------------------------------- /content/resources/sudo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/sudo.md -------------------------------------------------------------------------------- /content/resources/swap_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/swap_file.md -------------------------------------------------------------------------------- /content/resources/sysctl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/sysctl.md -------------------------------------------------------------------------------- /content/resources/systemd_unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/systemd_unit.md -------------------------------------------------------------------------------- /content/resources/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/template.md -------------------------------------------------------------------------------- /content/resources/timezone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/timezone.md -------------------------------------------------------------------------------- /content/resources/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/user.md -------------------------------------------------------------------------------- /content/resources/user_ulimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/user_ulimit.md -------------------------------------------------------------------------------- /content/resources/windows_ad_join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_ad_join.md -------------------------------------------------------------------------------- /content/resources/windows_audit_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_audit_policy.md -------------------------------------------------------------------------------- /content/resources/windows_auto_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_auto_run.md -------------------------------------------------------------------------------- /content/resources/windows_certificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_certificate.md -------------------------------------------------------------------------------- /content/resources/windows_defender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_defender.md -------------------------------------------------------------------------------- /content/resources/windows_dfs_folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_dfs_folder.md -------------------------------------------------------------------------------- /content/resources/windows_dfs_namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_dfs_namespace.md -------------------------------------------------------------------------------- /content/resources/windows_dfs_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_dfs_server.md -------------------------------------------------------------------------------- /content/resources/windows_dns_record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_dns_record.md -------------------------------------------------------------------------------- /content/resources/windows_dns_zone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_dns_zone.md -------------------------------------------------------------------------------- /content/resources/windows_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_env.md -------------------------------------------------------------------------------- /content/resources/windows_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_feature.md -------------------------------------------------------------------------------- /content/resources/windows_feature_dism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_feature_dism.md -------------------------------------------------------------------------------- /content/resources/windows_firewall_rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_firewall_rule.md -------------------------------------------------------------------------------- /content/resources/windows_font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_font.md -------------------------------------------------------------------------------- /content/resources/windows_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_package.md -------------------------------------------------------------------------------- /content/resources/windows_pagefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_pagefile.md -------------------------------------------------------------------------------- /content/resources/windows_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_path.md -------------------------------------------------------------------------------- /content/resources/windows_printer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_printer.md -------------------------------------------------------------------------------- /content/resources/windows_printer_port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_printer_port.md -------------------------------------------------------------------------------- /content/resources/windows_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_service.md -------------------------------------------------------------------------------- /content/resources/windows_share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_share.md -------------------------------------------------------------------------------- /content/resources/windows_shortcut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_shortcut.md -------------------------------------------------------------------------------- /content/resources/windows_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_task.md -------------------------------------------------------------------------------- /content/resources/windows_uac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_uac.md -------------------------------------------------------------------------------- /content/resources/windows_workgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/windows_workgroup.md -------------------------------------------------------------------------------- /content/resources/yum_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/yum_package.md -------------------------------------------------------------------------------- /content/resources/yum_repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/yum_repository.md -------------------------------------------------------------------------------- /content/resources/zypper_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/zypper_package.md -------------------------------------------------------------------------------- /content/resources/zypper_repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/resources/zypper_repository.md -------------------------------------------------------------------------------- /content/reusable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/README.md -------------------------------------------------------------------------------- /content/reusable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/index.md -------------------------------------------------------------------------------- /content/reusable/md/EOL_a1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/EOL_a1.md -------------------------------------------------------------------------------- /content/reusable/md/EOL_manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/EOL_manage.md -------------------------------------------------------------------------------- /content/reusable/md/automate_ha_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/automate_ha_support.md -------------------------------------------------------------------------------- /content/reusable/md/azure_marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/azure_marketplace.md -------------------------------------------------------------------------------- /content/reusable/md/chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef.md -------------------------------------------------------------------------------- /content/reusable/md/chef_client_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_client_run.md -------------------------------------------------------------------------------- /content/reusable/md/chef_client_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_client_summary.md -------------------------------------------------------------------------------- /content/reusable/md/chef_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_manager.md -------------------------------------------------------------------------------- /content/reusable/md/chef_shell_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_shell_config.md -------------------------------------------------------------------------------- /content/reusable/md/chef_shell_manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_shell_manage.md -------------------------------------------------------------------------------- /content/reusable/md/chef_shell_modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_shell_modes.md -------------------------------------------------------------------------------- /content/reusable/md/chef_shell_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_shell_summary.md -------------------------------------------------------------------------------- /content/reusable/md/chef_solo_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_solo_summary.md -------------------------------------------------------------------------------- /content/reusable/md/chef_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chef_tags.md -------------------------------------------------------------------------------- /content/reusable/md/chefspec_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/chefspec_summary.md -------------------------------------------------------------------------------- /content/reusable/md/config_rb_ohai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/config_rb_ohai.md -------------------------------------------------------------------------------- /content/reusable/md/cookbooks_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/cookbooks_attribute.md -------------------------------------------------------------------------------- /content/reusable/md/cookbooks_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/cookbooks_metadata.md -------------------------------------------------------------------------------- /content/reusable/md/cookbooks_recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/cookbooks_recipe.md -------------------------------------------------------------------------------- /content/reusable/md/cookbooks_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/cookbooks_summary.md -------------------------------------------------------------------------------- /content/reusable/md/cookbooks_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/cookbooks_version.md -------------------------------------------------------------------------------- /content/reusable/md/data_bag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/data_bag.md -------------------------------------------------------------------------------- /content/reusable/md/data_bag_encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/data_bag_encryption.md -------------------------------------------------------------------------------- /content/reusable/md/data_bag_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/data_bag_item.md -------------------------------------------------------------------------------- /content/reusable/md/dsl_handler_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/dsl_handler_summary.md -------------------------------------------------------------------------------- /content/reusable/md/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/environment.md -------------------------------------------------------------------------------- /content/reusable/md/fips_intro_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/fips_intro_client.md -------------------------------------------------------------------------------- /content/reusable/md/handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/handler.md -------------------------------------------------------------------------------- /content/reusable/md/handler_type_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/handler_type_start.md -------------------------------------------------------------------------------- /content/reusable/md/handler_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/handler_types.md -------------------------------------------------------------------------------- /content/reusable/md/infra_lang_data_bag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/infra_lang_data_bag.md -------------------------------------------------------------------------------- /content/reusable/md/infra_lang_ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/infra_lang_ruby.md -------------------------------------------------------------------------------- /content/reusable/md/infra_lang_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/infra_lang_summary.md -------------------------------------------------------------------------------- /content/reusable/md/install_chef_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/install_chef_client.md -------------------------------------------------------------------------------- /content/reusable/md/libraries_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/libraries_summary.md -------------------------------------------------------------------------------- /content/reusable/md/nameless_apt_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/nameless_apt_update.md -------------------------------------------------------------------------------- /content/reusable/md/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/node.md -------------------------------------------------------------------------------- /content/reusable/md/node_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/node_attribute.md -------------------------------------------------------------------------------- /content/reusable/md/node_ctl_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/node_ctl_attribute.md -------------------------------------------------------------------------------- /content/reusable/md/node_ctl_run_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/node_ctl_run_list.md -------------------------------------------------------------------------------- /content/reusable/md/node_run_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/node_run_list.md -------------------------------------------------------------------------------- /content/reusable/md/node_run_list_empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/node_run_list_empty.md -------------------------------------------------------------------------------- /content/reusable/md/node_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/node_types.md -------------------------------------------------------------------------------- /content/reusable/md/ohai_attribute_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/ohai_attribute_list.md -------------------------------------------------------------------------------- /content/reusable/md/ohai_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/ohai_summary.md -------------------------------------------------------------------------------- /content/reusable/md/policy_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/policy_summary.md -------------------------------------------------------------------------------- /content/reusable/md/policyfile_rb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/policyfile_rb.md -------------------------------------------------------------------------------- /content/reusable/md/policyfile_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/policyfile_summary.md -------------------------------------------------------------------------------- /content/reusable/md/proxy_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/proxy_env.md -------------------------------------------------------------------------------- /content/reusable/md/proxy_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/proxy_windows.md -------------------------------------------------------------------------------- /content/reusable/md/release_channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/release_channels.md -------------------------------------------------------------------------------- /content/reusable/md/resource_log_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/resource_log_syntax.md -------------------------------------------------------------------------------- /content/reusable/md/resource_service_use_nothing_action.md: -------------------------------------------------------------------------------- 1 | ```ruby 2 | service 'memcached' do 3 | action :nothing 4 | end 5 | ``` 6 | -------------------------------------------------------------------------------- /content/reusable/md/resources_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/resources_common.md -------------------------------------------------------------------------------- /content/reusable/md/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/role.md -------------------------------------------------------------------------------- /content/reusable/md/role_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/role_attribute.md -------------------------------------------------------------------------------- /content/reusable/md/ruby_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/ruby_summary.md -------------------------------------------------------------------------------- /content/reusable/md/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search.md -------------------------------------------------------------------------------- /content/reusable/md/search_boolean_and.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_boolean_and.md -------------------------------------------------------------------------------- /content/reusable/md/search_boolean_not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_boolean_not.md -------------------------------------------------------------------------------- /content/reusable/md/search_boolean_or.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_boolean_or.md -------------------------------------------------------------------------------- /content/reusable/md/search_data_bag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_data_bag.md -------------------------------------------------------------------------------- /content/reusable/md/search_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_environment.md -------------------------------------------------------------------------------- /content/reusable/md/search_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_key.md -------------------------------------------------------------------------------- /content/reusable/md/search_key_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_key_name.md -------------------------------------------------------------------------------- /content/reusable/md/search_key_nested.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_key_nested.md -------------------------------------------------------------------------------- /content/reusable/md/search_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_pattern.md -------------------------------------------------------------------------------- /content/reusable/md/search_query_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/search_query_syntax.md -------------------------------------------------------------------------------- /content/reusable/md/target_mode_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/target_mode_summary.md -------------------------------------------------------------------------------- /content/reusable/md/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/template.md -------------------------------------------------------------------------------- /content/reusable/md/template_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/template_helpers.md -------------------------------------------------------------------------------- /content/reusable/md/template_partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/template_partials.md -------------------------------------------------------------------------------- /content/reusable/md/template_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/template_variables.md -------------------------------------------------------------------------------- /content/reusable/md/unified_mode_enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/unified_mode_enable.md -------------------------------------------------------------------------------- /content/reusable/md/windows_msiexec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/windows_msiexec.md -------------------------------------------------------------------------------- /content/reusable/md/workstation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/reusable/md/workstation.md -------------------------------------------------------------------------------- /content/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/roles.md -------------------------------------------------------------------------------- /content/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/ruby.md -------------------------------------------------------------------------------- /content/run_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/run_lists.md -------------------------------------------------------------------------------- /content/saas/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/saas/_index.md -------------------------------------------------------------------------------- /content/saas/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/saas/get_started.md -------------------------------------------------------------------------------- /content/saas/opsworks_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/saas/opsworks_migration.md -------------------------------------------------------------------------------- /content/saas/register_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/saas/register_nodes.md -------------------------------------------------------------------------------- /content/saas/sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/saas/sso.md -------------------------------------------------------------------------------- /content/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/search.md -------------------------------------------------------------------------------- /content/server_configure_saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_configure_saml.md -------------------------------------------------------------------------------- /content/server_ldap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_ldap.md -------------------------------------------------------------------------------- /content/server_manage_clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_manage_clients.md -------------------------------------------------------------------------------- /content/server_manage_cookbooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_manage_cookbooks.md -------------------------------------------------------------------------------- /content/server_manage_data_bags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_manage_data_bags.md -------------------------------------------------------------------------------- /content/server_manage_environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_manage_environments.md -------------------------------------------------------------------------------- /content/server_manage_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_manage_nodes.md -------------------------------------------------------------------------------- /content/server_manage_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_manage_roles.md -------------------------------------------------------------------------------- /content/server_orgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_orgs.md -------------------------------------------------------------------------------- /content/server_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/server_users.md -------------------------------------------------------------------------------- /content/sitemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/sitemap.md -------------------------------------------------------------------------------- /content/style/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/_index.md -------------------------------------------------------------------------------- /content/style/chef_house.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/chef_house.md -------------------------------------------------------------------------------- /content/style/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/contribute.md -------------------------------------------------------------------------------- /content/style/front_matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/front_matter.md -------------------------------------------------------------------------------- /content/style/headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/headings.md -------------------------------------------------------------------------------- /content/style/linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/linking.md -------------------------------------------------------------------------------- /content/style/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/lists.md -------------------------------------------------------------------------------- /content/style/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/markdown.md -------------------------------------------------------------------------------- /content/style/notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/notices.md -------------------------------------------------------------------------------- /content/style/procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/procedures.md -------------------------------------------------------------------------------- /content/style/product_names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/product_names.md -------------------------------------------------------------------------------- /content/style/reusable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/reusable/README.md -------------------------------------------------------------------------------- /content/style/reusable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/reusable/index.md -------------------------------------------------------------------------------- /content/style/reuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/reuse.md -------------------------------------------------------------------------------- /content/style/shortcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/shortcodes.md -------------------------------------------------------------------------------- /content/style/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/tables.md -------------------------------------------------------------------------------- /content/style/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/terms.md -------------------------------------------------------------------------------- /content/style/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/test.md -------------------------------------------------------------------------------- /content/style/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/style/tools.md -------------------------------------------------------------------------------- /content/target_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/target_mode.md -------------------------------------------------------------------------------- /content/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/templates.md -------------------------------------------------------------------------------- /content/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/terraform.md -------------------------------------------------------------------------------- /content/unified_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/unified_mode.md -------------------------------------------------------------------------------- /content/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/uninstall.md -------------------------------------------------------------------------------- /content/upgrade_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/upgrade_client.md -------------------------------------------------------------------------------- /content/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/versions.md -------------------------------------------------------------------------------- /content/vmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/vmware.md -------------------------------------------------------------------------------- /content/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/content/windows.md -------------------------------------------------------------------------------- /cspell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/cspell.yaml -------------------------------------------------------------------------------- /data/infra/resources/alternatives.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/alternatives.yaml -------------------------------------------------------------------------------- /data/infra/resources/apt_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/apt_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/apt_preference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/apt_preference.yaml -------------------------------------------------------------------------------- /data/infra/resources/apt_repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/apt_repository.yaml -------------------------------------------------------------------------------- /data/infra/resources/apt_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/apt_update.yaml -------------------------------------------------------------------------------- /data/infra/resources/archive_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/archive_file.yaml -------------------------------------------------------------------------------- /data/infra/resources/bash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/bash.yaml -------------------------------------------------------------------------------- /data/infra/resources/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/batch.yaml -------------------------------------------------------------------------------- /data/infra/resources/bff_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/bff_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/breakpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/breakpoint.yaml -------------------------------------------------------------------------------- /data/infra/resources/build_essential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/build_essential.yaml -------------------------------------------------------------------------------- /data/infra/resources/cab_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/cab_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_acl.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_client.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_client_cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_client_cron.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_container.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_data_bag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_data_bag.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_environment.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_gem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_gem.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_group.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_handler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_handler.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_node.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_role.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_sleep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_sleep.yaml -------------------------------------------------------------------------------- /data/infra/resources/chef_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/chef_user.yaml -------------------------------------------------------------------------------- /data/infra/resources/cookbook_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/cookbook_file.yaml -------------------------------------------------------------------------------- /data/infra/resources/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/cron.yaml -------------------------------------------------------------------------------- /data/infra/resources/cron_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/cron_access.yaml -------------------------------------------------------------------------------- /data/infra/resources/cron_d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/cron_d.yaml -------------------------------------------------------------------------------- /data/infra/resources/csh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/csh.yaml -------------------------------------------------------------------------------- /data/infra/resources/directory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/directory.yaml -------------------------------------------------------------------------------- /data/infra/resources/dmg_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/dmg_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/dnf_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/dnf_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/dpkg_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/dpkg_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/dsc_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/dsc_resource.yaml -------------------------------------------------------------------------------- /data/infra/resources/dsc_script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/dsc_script.yaml -------------------------------------------------------------------------------- /data/infra/resources/execute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/execute.yaml -------------------------------------------------------------------------------- /data/infra/resources/file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/file.yaml -------------------------------------------------------------------------------- /data/infra/resources/freebsd_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/freebsd_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/gem_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/gem_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/git.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/git.yaml -------------------------------------------------------------------------------- /data/infra/resources/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/group.yaml -------------------------------------------------------------------------------- /data/infra/resources/habitat_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/habitat_config.yaml -------------------------------------------------------------------------------- /data/infra/resources/habitat_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/habitat_install.yaml -------------------------------------------------------------------------------- /data/infra/resources/habitat_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/habitat_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/habitat_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/habitat_service.yaml -------------------------------------------------------------------------------- /data/infra/resources/habitat_sup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/habitat_sup.yaml -------------------------------------------------------------------------------- /data/infra/resources/homebrew_cask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/homebrew_cask.yaml -------------------------------------------------------------------------------- /data/infra/resources/homebrew_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/homebrew_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/homebrew_tap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/homebrew_tap.yaml -------------------------------------------------------------------------------- /data/infra/resources/homebrew_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/homebrew_update.yaml -------------------------------------------------------------------------------- /data/infra/resources/hostname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/hostname.yaml -------------------------------------------------------------------------------- /data/infra/resources/http_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/http_request.yaml -------------------------------------------------------------------------------- /data/infra/resources/ifconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/ifconfig.yaml -------------------------------------------------------------------------------- /data/infra/resources/inspec_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/inspec_input.yaml -------------------------------------------------------------------------------- /data/infra/resources/inspec_waiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/inspec_waiver.yaml -------------------------------------------------------------------------------- /data/infra/resources/ips_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/ips_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/kernel_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/kernel_module.yaml -------------------------------------------------------------------------------- /data/infra/resources/ksh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/ksh.yaml -------------------------------------------------------------------------------- /data/infra/resources/launchd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/launchd.yaml -------------------------------------------------------------------------------- /data/infra/resources/link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/link.yaml -------------------------------------------------------------------------------- /data/infra/resources/locale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/locale.yaml -------------------------------------------------------------------------------- /data/infra/resources/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/log.yaml -------------------------------------------------------------------------------- /data/infra/resources/macosx_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/macosx_service.yaml -------------------------------------------------------------------------------- /data/infra/resources/macports_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/macports_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/mdadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/mdadm.yaml -------------------------------------------------------------------------------- /data/infra/resources/mount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/mount.yaml -------------------------------------------------------------------------------- /data/infra/resources/msu_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/msu_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/notify_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/notify_group.yaml -------------------------------------------------------------------------------- /data/infra/resources/ohai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/ohai.yaml -------------------------------------------------------------------------------- /data/infra/resources/ohai_hint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/ohai_hint.yaml -------------------------------------------------------------------------------- /data/infra/resources/openbsd_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/openbsd_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/openssl_dhparam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/openssl_dhparam.yaml -------------------------------------------------------------------------------- /data/infra/resources/openssl_x509_crl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/openssl_x509_crl.yaml -------------------------------------------------------------------------------- /data/infra/resources/osx_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/osx_profile.yaml -------------------------------------------------------------------------------- /data/infra/resources/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/package.yaml -------------------------------------------------------------------------------- /data/infra/resources/pacman_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/pacman_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/paludis_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/paludis_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/perl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/perl.yaml -------------------------------------------------------------------------------- /data/infra/resources/plist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/plist.yaml -------------------------------------------------------------------------------- /data/infra/resources/portage_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/portage_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/python.yaml -------------------------------------------------------------------------------- /data/infra/resources/reboot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/reboot.yaml -------------------------------------------------------------------------------- /data/infra/resources/registry_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/registry_key.yaml -------------------------------------------------------------------------------- /data/infra/resources/remote_directory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/remote_directory.yaml -------------------------------------------------------------------------------- /data/infra/resources/remote_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/remote_file.yaml -------------------------------------------------------------------------------- /data/infra/resources/rhsm_errata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/rhsm_errata.yaml -------------------------------------------------------------------------------- /data/infra/resources/rhsm_register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/rhsm_register.yaml -------------------------------------------------------------------------------- /data/infra/resources/rhsm_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/rhsm_repo.yaml -------------------------------------------------------------------------------- /data/infra/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/route.yaml -------------------------------------------------------------------------------- /data/infra/resources/rpm_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/rpm_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/ruby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/ruby.yaml -------------------------------------------------------------------------------- /data/infra/resources/ruby_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/ruby_block.yaml -------------------------------------------------------------------------------- /data/infra/resources/script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/script.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_boolean.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_fcontext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_fcontext.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_install.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_login.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_module.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_port.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_state.yaml -------------------------------------------------------------------------------- /data/infra/resources/selinux_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/selinux_user.yaml -------------------------------------------------------------------------------- /data/infra/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/service.yaml -------------------------------------------------------------------------------- /data/infra/resources/smartos_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/smartos_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/snap_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/snap_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/solaris_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/solaris_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/subversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/subversion.yaml -------------------------------------------------------------------------------- /data/infra/resources/sudo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/sudo.yaml -------------------------------------------------------------------------------- /data/infra/resources/swap_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/swap_file.yaml -------------------------------------------------------------------------------- /data/infra/resources/sysctl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/sysctl.yaml -------------------------------------------------------------------------------- /data/infra/resources/systemd_unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/systemd_unit.yaml -------------------------------------------------------------------------------- /data/infra/resources/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/template.yaml -------------------------------------------------------------------------------- /data/infra/resources/timezone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/timezone.yaml -------------------------------------------------------------------------------- /data/infra/resources/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/user.yaml -------------------------------------------------------------------------------- /data/infra/resources/user_ulimit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/user_ulimit.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_ad_join.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_ad_join.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_auto_run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_auto_run.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_defender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_defender.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_dns_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_dns_zone.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_env.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_feature.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_font.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_font.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_pagefile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_pagefile.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_path.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_printer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_printer.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_service.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_share.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_shortcut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_shortcut.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_task.yaml -------------------------------------------------------------------------------- /data/infra/resources/windows_uac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/windows_uac.yaml -------------------------------------------------------------------------------- /data/infra/resources/yum_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/yum_package.yaml -------------------------------------------------------------------------------- /data/infra/resources/yum_repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/yum_repository.yaml -------------------------------------------------------------------------------- /data/infra/resources/zypper_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/data/infra/resources/zypper_package.yaml -------------------------------------------------------------------------------- /data/releases/chef/current.json: -------------------------------------------------------------------------------- 1 | [ 2 | "18.0.155" 3 | ] 4 | -------------------------------------------------------------------------------- /generated/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/generated/Makefile -------------------------------------------------------------------------------- /generated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/generated/README.md -------------------------------------------------------------------------------- /generated/_vendor/github.com/chef/cookstyle/docs-chef-io/assets/cookstyle/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generated/_vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/generated/_vendor/modules.txt -------------------------------------------------------------------------------- /generated/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/generated/config.toml -------------------------------------------------------------------------------- /generated/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/generated/go.mod -------------------------------------------------------------------------------- /generated/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/generated/go.sum -------------------------------------------------------------------------------- /generated/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/generated/layouts/index.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/go.sum -------------------------------------------------------------------------------- /infra_resources_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/infra_resources_readme.md -------------------------------------------------------------------------------- /layouts/_default/home.sitemap-main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/_default/home.sitemap-main.xml -------------------------------------------------------------------------------- /layouts/_default/infra_resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/_default/infra_resource.html -------------------------------------------------------------------------------- /layouts/_default/infra_resources_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/_default/infra_resources_all.html -------------------------------------------------------------------------------- /layouts/_default/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/_default/sitemap.xml -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/infra_resource_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/partials/infra_resource_data.html -------------------------------------------------------------------------------- /layouts/partials/infra_resource_toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/partials/infra_resource_toc.html -------------------------------------------------------------------------------- /layouts/partials/version_numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/partials/version_numbers.html -------------------------------------------------------------------------------- /layouts/shortcodes/chef_automate_mark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/layouts/shortcodes/chef_automate_mark.html -------------------------------------------------------------------------------- /layouts/shortcodes/example_fqdn.html: -------------------------------------------------------------------------------- 1 | {{.Get 0}}.example.com -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.hugo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/package.hugo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/local-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/scripts/local-server.sh -------------------------------------------------------------------------------- /scripts/netlify-branch-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/scripts/netlify-branch-deploy.sh -------------------------------------------------------------------------------- /scripts/netlify-deploy-preview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/scripts/netlify-deploy-preview.sh -------------------------------------------------------------------------------- /scripts/netlify-deploy-production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/scripts/netlify-deploy-production.sh -------------------------------------------------------------------------------- /static/images/360/select-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/360/select-role.png -------------------------------------------------------------------------------- /static/images/360/setting-expiry-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/360/setting-expiry-token.png -------------------------------------------------------------------------------- /static/images/ChefServerDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/ChefServerDetails.png -------------------------------------------------------------------------------- /static/images/DashboardsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/DashboardsPage.png -------------------------------------------------------------------------------- /static/images/EventPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/EventPage.png -------------------------------------------------------------------------------- /static/images/NotSecurePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/NotSecurePage.png -------------------------------------------------------------------------------- /static/images/OrgPageDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/OrgPageDetails.png -------------------------------------------------------------------------------- /static/images/OutputPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/OutputPage.png -------------------------------------------------------------------------------- /static/images/WelcomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/WelcomePage.png -------------------------------------------------------------------------------- /static/images/a2_docs_banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/a2_docs_banner.svg -------------------------------------------------------------------------------- /static/images/add_DCO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/add_DCO.png -------------------------------------------------------------------------------- /static/images/audit_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/audit_run.png -------------------------------------------------------------------------------- /static/images/automate-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/automate-dashboard.png -------------------------------------------------------------------------------- /static/images/automate-fips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/automate-fips.png -------------------------------------------------------------------------------- /static/images/automate_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/automate_architecture.svg -------------------------------------------------------------------------------- /static/images/automate_insecure_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/automate_insecure_page.png -------------------------------------------------------------------------------- /static/images/automate_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/automate_signin.png -------------------------------------------------------------------------------- /static/images/automate_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/automate_welcome.png -------------------------------------------------------------------------------- /static/images/aws_inbound_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/aws_inbound_rule.png -------------------------------------------------------------------------------- /static/images/aws_inbound_rules_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/aws_inbound_rules_edit.png -------------------------------------------------------------------------------- /static/images/aws_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/aws_resources.png -------------------------------------------------------------------------------- /static/images/aws_security_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/aws_security_group.png -------------------------------------------------------------------------------- /static/images/az_automate_basics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_automate_basics.png -------------------------------------------------------------------------------- /static/images/az_automate_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_automate_complete.png -------------------------------------------------------------------------------- /static/images/az_automate_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_automate_create.png -------------------------------------------------------------------------------- /static/images/az_automate_essentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_automate_essentials.png -------------------------------------------------------------------------------- /static/images/az_automate_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_automate_overview.png -------------------------------------------------------------------------------- /static/images/az_automate_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_automate_progress.png -------------------------------------------------------------------------------- /static/images/az_automate_review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_automate_review.png -------------------------------------------------------------------------------- /static/images/az_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_continue.png -------------------------------------------------------------------------------- /static/images/az_getitnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_getitnow.png -------------------------------------------------------------------------------- /static/images/az_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_home.png -------------------------------------------------------------------------------- /static/images/az_signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_signin.jpg -------------------------------------------------------------------------------- /static/images/az_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_signin.png -------------------------------------------------------------------------------- /static/images/az_ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_ssh.png -------------------------------------------------------------------------------- /static/images/az_test_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_test_continue.png -------------------------------------------------------------------------------- /static/images/az_test_drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_test_drive.png -------------------------------------------------------------------------------- /static/images/az_test_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_test_goto.png -------------------------------------------------------------------------------- /static/images/az_test_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_test_progress.png -------------------------------------------------------------------------------- /static/images/az_test_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_test_ready.png -------------------------------------------------------------------------------- /static/images/az_testdrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/az_testdrive.png -------------------------------------------------------------------------------- /static/images/chef_automate_add_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_automate_add_server.png -------------------------------------------------------------------------------- /static/images/chef_automate_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_automate_full.png -------------------------------------------------------------------------------- /static/images/chef_automate_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_automate_login.png -------------------------------------------------------------------------------- /static/images/chef_automate_node_uuid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_automate_node_uuid.png -------------------------------------------------------------------------------- /static/images/chef_bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_bootstrap.png -------------------------------------------------------------------------------- /static/images/chef_overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_overview.svg -------------------------------------------------------------------------------- /static/images/chef_overview_2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_overview_2020.svg -------------------------------------------------------------------------------- /static/images/chef_run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_run.svg -------------------------------------------------------------------------------- /static/images/chef_server_ha_aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_server_ha_aws.svg -------------------------------------------------------------------------------- /static/images/chef_server_replication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/chef_server_replication.png -------------------------------------------------------------------------------- /static/images/collaborator_permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/collaborator_permission.png -------------------------------------------------------------------------------- /static/images/consumer_tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/consumer_tests.png -------------------------------------------------------------------------------- /static/images/delivery_build_cookbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/delivery_build_cookbook.svg -------------------------------------------------------------------------------- /static/images/delivery_full_workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/delivery_full_workflow.svg -------------------------------------------------------------------------------- /static/images/delivery_integrate_smtp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/delivery_integrate_smtp.svg -------------------------------------------------------------------------------- /static/images/developers_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/developers_menu.png -------------------------------------------------------------------------------- /static/images/download_starter_kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/download_starter_kit.png -------------------------------------------------------------------------------- /static/images/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/dragon.png -------------------------------------------------------------------------------- /static/images/edit_on_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/edit_on_github.png -------------------------------------------------------------------------------- /static/images/file_in_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/file_in_repo.png -------------------------------------------------------------------------------- /static/images/github_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/github_menu.png -------------------------------------------------------------------------------- /static/images/github_user_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/github_user_menu.png -------------------------------------------------------------------------------- /static/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/hero.png -------------------------------------------------------------------------------- /static/images/hosted_chef_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/hosted_chef_welcome.png -------------------------------------------------------------------------------- /static/images/icon_chef_automate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_chef_automate.svg -------------------------------------------------------------------------------- /static/images/icon_chef_client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_chef_client.svg -------------------------------------------------------------------------------- /static/images/icon_chef_server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_chef_server.svg -------------------------------------------------------------------------------- /static/images/icon_chef_supermarket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_chef_supermarket.svg -------------------------------------------------------------------------------- /static/images/icon_chefspec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_chefspec.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_attributes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_attributes.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_files.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_libraries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_libraries.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_metadata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_metadata.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_recipes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_recipes.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_resources.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_templates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_templates.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_tests.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_tests.svg -------------------------------------------------------------------------------- /static/images/icon_cookbook_versions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_cookbook_versions.svg -------------------------------------------------------------------------------- /static/images/icon_ctl_chef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_ctl_chef.svg -------------------------------------------------------------------------------- /static/images/icon_ctl_knife.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_ctl_knife.svg -------------------------------------------------------------------------------- /static/images/icon_data_bags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_data_bags.svg -------------------------------------------------------------------------------- /static/images/icon_environments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_environments.svg -------------------------------------------------------------------------------- /static/images/icon_kitchen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_kitchen.svg -------------------------------------------------------------------------------- /static/images/icon_manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_manage.svg -------------------------------------------------------------------------------- /static/images/icon_node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_node.svg -------------------------------------------------------------------------------- /static/images/icon_node_type_container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_node_type_container.svg -------------------------------------------------------------------------------- /static/images/icon_node_type_server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_node_type_server.svg -------------------------------------------------------------------------------- /static/images/icon_ohai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_ohai.svg -------------------------------------------------------------------------------- /static/images/icon_policy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_policy.svg -------------------------------------------------------------------------------- /static/images/icon_repository.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_repository.svg -------------------------------------------------------------------------------- /static/images/icon_roles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_roles.svg -------------------------------------------------------------------------------- /static/images/icon_ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_ruby.svg -------------------------------------------------------------------------------- /static/images/icon_run_lists.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_run_lists.svg -------------------------------------------------------------------------------- /static/images/icon_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_search.svg -------------------------------------------------------------------------------- /static/images/icon_server_groups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_server_groups.svg -------------------------------------------------------------------------------- /static/images/icon_server_organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_server_organization.svg -------------------------------------------------------------------------------- /static/images/icon_server_users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_server_users.svg -------------------------------------------------------------------------------- /static/images/icon_workstation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/icon_workstation.svg -------------------------------------------------------------------------------- /static/images/ms_pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/ms_pass.png -------------------------------------------------------------------------------- /static/images/ms_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/ms_signin.png -------------------------------------------------------------------------------- /static/images/new_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/new_token.png -------------------------------------------------------------------------------- /static/images/personal_access_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/personal_access_token.png -------------------------------------------------------------------------------- /static/images/public_supermarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/public_supermarket.png -------------------------------------------------------------------------------- /static/images/saas/saas-aws-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/saas/saas-aws-console.png -------------------------------------------------------------------------------- /static/images/saas/saas-status-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/saas/saas-status-column.png -------------------------------------------------------------------------------- /static/images/samlattributes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/samlattributes.jpg -------------------------------------------------------------------------------- /static/images/server_components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/server_components.svg -------------------------------------------------------------------------------- /static/images/server_components_s3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/server_components_s3.svg -------------------------------------------------------------------------------- /static/images/start_chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/start_chef.png -------------------------------------------------------------------------------- /static/images/start_chef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/start_chef.svg -------------------------------------------------------------------------------- /static/images/step_manage_webui_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/step_manage_webui_admin.png -------------------------------------------------------------------------------- /static/images/step_manage_webui_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/step_manage_webui_nodes.png -------------------------------------------------------------------------------- /static/images/step_manage_webui_policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/step_manage_webui_policy.png -------------------------------------------------------------------------------- /static/images/token_created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/images/token_created.png -------------------------------------------------------------------------------- /static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/static/package-lock.json -------------------------------------------------------------------------------- /tools/vale/.vale-config/3-Hugo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/.vale-config/3-Hugo.ini -------------------------------------------------------------------------------- /tools/vale/.vale-github-action.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/.vale-github-action.ini -------------------------------------------------------------------------------- /tools/vale/Microsoft/AMPM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/AMPM.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Accessibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Accessibility.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Acronyms.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Adverbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Adverbs.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Auto.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Avoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Avoid.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/ComplexWords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/ComplexWords.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Contractions.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Dashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Dashes.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/DateFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/DateFormat.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/DateNumbers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/DateNumbers.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/DateOrder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/DateOrder.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Ellipses.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/FirstPerson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/FirstPerson.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Foreign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Foreign.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Gender.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/GenderBias.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/GeneralURL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/GeneralURL.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/HeadingAcronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/HeadingAcronyms.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/HeadingColons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/HeadingColons.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Headings.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Hyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Hyphens.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Negative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Negative.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Ordinal.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/OxfordComma.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Passive.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Percentages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Percentages.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Quotes.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/RangeFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/RangeFormat.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/RangeTime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/RangeTime.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Ranges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Ranges.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Semicolon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Semicolon.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/SentenceLength.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/SentenceLength.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Spacing.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Suspended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Suspended.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Terms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Terms.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/URLFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/URLFormat.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Units.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Vocab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Vocab.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/We.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/Wordiness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/Wordiness.yml -------------------------------------------------------------------------------- /tools/vale/Microsoft/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/Microsoft/meta.json -------------------------------------------------------------------------------- /tools/vale/chef/brands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/chef/brands.yml -------------------------------------------------------------------------------- /tools/vale/chef/chef_products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/chef/chef_products.yml -------------------------------------------------------------------------------- /tools/vale/chef/foreign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/chef/foreign.yml -------------------------------------------------------------------------------- /tools/vale/chef/inclusive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/chef/inclusive.yml -------------------------------------------------------------------------------- /tools/vale/chef/policyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/chef/policyfile.yml -------------------------------------------------------------------------------- /tools/vale/chef/ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/chef/ui.yaml -------------------------------------------------------------------------------- /tools/vale/markdownlint-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/markdownlint-rules.yaml -------------------------------------------------------------------------------- /tools/vale/vale.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/vale.tmpl -------------------------------------------------------------------------------- /tools/vale/vale/Annotations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/vale/Annotations.yml -------------------------------------------------------------------------------- /tools/vale/vale/Editorializing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/vale/Editorializing.yml -------------------------------------------------------------------------------- /tools/vale/vale/Hedging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/vale/Hedging.yml -------------------------------------------------------------------------------- /tools/vale/vale/Litotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/vale/Litotes.yml -------------------------------------------------------------------------------- /tools/vale/vale/Redundancy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/vale/Redundancy.yml -------------------------------------------------------------------------------- /tools/vale/vale/Uncomparables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/vale/Uncomparables.yml -------------------------------------------------------------------------------- /tools/vale/write-good/Cliches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/Cliches.yml -------------------------------------------------------------------------------- /tools/vale/write-good/E-Prime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/E-Prime.yml -------------------------------------------------------------------------------- /tools/vale/write-good/Illusions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/Illusions.yml -------------------------------------------------------------------------------- /tools/vale/write-good/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/Passive.yml -------------------------------------------------------------------------------- /tools/vale/write-good/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/README.md -------------------------------------------------------------------------------- /tools/vale/write-good/So.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/So.yml -------------------------------------------------------------------------------- /tools/vale/write-good/ThereIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/ThereIs.yml -------------------------------------------------------------------------------- /tools/vale/write-good/TooWordy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/TooWordy.yml -------------------------------------------------------------------------------- /tools/vale/write-good/Weasel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/Weasel.yml -------------------------------------------------------------------------------- /tools/vale/write-good/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/chef-web-docs/HEAD/tools/vale/write-good/meta.json --------------------------------------------------------------------------------