diff --git a/data/infra/resources/chef_client_scheduled_task.yaml b/data/infra/resources/chef_client_scheduled_task.yaml index b7bfca7179..a614b217c2 100644 --- a/data/infra/resources/chef_client_scheduled_task.yaml +++ b/data/infra/resources/chef_client_scheduled_task.yaml @@ -63,7 +63,7 @@ properties_list: - property: config_directory ruby_type: String required: false - default_value: "/etc/chef" + default_value: C:/chef description_list: - markdown: The path of the config directory. - property: daemon_options diff --git a/data/infra/resources/homebrew_tap.yaml b/data/infra/resources/homebrew_tap.yaml index 284e846487..d7fbd37ad6 100644 --- a/data/infra/resources/homebrew_tap.yaml +++ b/data/infra/resources/homebrew_tap.yaml @@ -55,4 +55,10 @@ properties_list: required: false description_list: - markdown: The URL of the tap. -examples: +examples: | + + **Tap a repository**: + + ```ruby + homebrew_tap 'apple/homebrew-apple' + ``` diff --git a/data/infra/resources/windows_user_privilege.yaml b/data/infra/resources/windows_user_privilege.yaml index cafb57f395..6b7767df2f 100644 --- a/data/infra/resources/windows_user_privilege.yaml +++ b/data/infra/resources/windows_user_privilege.yaml @@ -44,7 +44,7 @@ properties_list: description_list: - markdown: An optional property to add the privilege for the specified principal. Use only with add and remove action. The principal can either be a user, group, or - [special identity](https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/understand-special-identities-groups).' + [special identity](https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/understand-special-identities-groups). - property: privilege ruby_type: Array, String required: true @@ -106,7 +106,7 @@ examples: | ```ruby windows_user_privilege 'Create Pagefile' do privilege 'SeCreatePagefilePrivilege' - users ['BUILTIN\Guests'] + principal 'BUILTIN\\Guests' action :remove end ```