diff --git a/backend/src/services/app-connection/chef/chef-connection-fns.ts b/backend/src/services/app-connection/chef/chef-connection-fns.ts
index a224a82f7..1b35628bc 100644
--- a/backend/src/services/app-connection/chef/chef-connection-fns.ts
+++ b/backend/src/services/app-connection/chef/chef-connection-fns.ts
@@ -10,7 +10,14 @@ import { IntegrationUrls } from "@app/services/integration-auth/integration-list
import { TChefDataBagItemContent } from "../../secret-sync/chef/chef-sync-types";
import { AppConnection } from "../app-connection-enums";
import { ChefConnectionMethod } from "./chef-connection-enums";
-import { TChefConnection, TChefConnectionConfig, TChefDataBag, TChefDataBagItem } from "./chef-connection-types";
+import {
+ TChefConnection,
+ TChefConnectionConfig,
+ TChefDataBag,
+ TChefDataBagItem,
+ TGetChefDataBagItem,
+ TUpdateChefDataBagItem
+} from "./chef-connection-types";
export const getChefServerUrl = async (serverUrl?: string) => {
const chefServerUrl = serverUrl ? removeTrailingSlash(serverUrl) : IntegrationUrls.CHEF_API_URL;
@@ -215,15 +222,6 @@ export const listChefDataBagItems = async (
}
};
-type TGetChefDataBagItem = {
- serverUrl?: string;
- userName: string;
- privateKey: string;
- orgName: string;
- dataBagName: string;
- dataBagItemName: string;
-};
-
export const getChefDataBagItem = async ({
serverUrl,
userName,
@@ -257,16 +255,6 @@ export const getChefDataBagItem = async ({
}
};
-type TUpdateChefDataBagItem = {
- serverUrl?: string;
- userName: string;
- privateKey: string;
- orgName: string;
- dataBagName: string;
- dataBagItemName: string;
- data: TChefDataBagItemContent;
-};
-
export const updateChefDataBagItem = async ({
serverUrl,
userName,
diff --git a/backend/src/services/app-connection/chef/chef-connection-types.ts b/backend/src/services/app-connection/chef/chef-connection-types.ts
index 33f0d5793..a2da80d3d 100644
--- a/backend/src/services/app-connection/chef/chef-connection-types.ts
+++ b/backend/src/services/app-connection/chef/chef-connection-types.ts
@@ -1,6 +1,7 @@
import z from "zod";
import { DiscriminativePick } from "@app/lib/types";
+import { TChefDataBagItemContent } from "@app/services/secret-sync/chef";
import { AppConnection } from "../app-connection-enums";
import {
@@ -28,3 +29,22 @@ export type TChefDataBag = {
export type TChefDataBagItem = {
name: string;
};
+
+export type TGetChefDataBagItem = {
+ serverUrl?: string;
+ userName: string;
+ privateKey: string;
+ orgName: string;
+ dataBagName: string;
+ dataBagItemName: string;
+};
+
+export type TUpdateChefDataBagItem = {
+ serverUrl?: string;
+ userName: string;
+ privateKey: string;
+ orgName: string;
+ dataBagName: string;
+ dataBagItemName: string;
+ data: TChefDataBagItemContent;
+};
diff --git a/docs/api-reference/endpoints/app-connections/chef/available.mdx b/docs/api-reference/endpoints/app-connections/chef/available.mdx
new file mode 100644
index 000000000..033723489
--- /dev/null
+++ b/docs/api-reference/endpoints/app-connections/chef/available.mdx
@@ -0,0 +1,4 @@
+---
+title: "Available"
+openapi: "GET /api/v1/app-connections/chef/available"
+---
diff --git a/docs/api-reference/endpoints/app-connections/chef/create.mdx b/docs/api-reference/endpoints/app-connections/chef/create.mdx
new file mode 100644
index 000000000..359b86036
--- /dev/null
+++ b/docs/api-reference/endpoints/app-connections/chef/create.mdx
@@ -0,0 +1,10 @@
+---
+title: "Create"
+openapi: "POST /api/v1/app-connections/chef"
+---
+
+
+ Check out the configuration docs for [Chef
+ Connections](/integrations/app-connections/chef) to learn how to obtain the
+ required credentials.
+
diff --git a/docs/api-reference/endpoints/app-connections/chef/delete.mdx b/docs/api-reference/endpoints/app-connections/chef/delete.mdx
new file mode 100644
index 000000000..43a67f01c
--- /dev/null
+++ b/docs/api-reference/endpoints/app-connections/chef/delete.mdx
@@ -0,0 +1,4 @@
+---
+title: "Delete"
+openapi: "DELETE /api/v1/app-connections/chef/{connectionId}"
+---
diff --git a/docs/api-reference/endpoints/app-connections/chef/get-by-id.mdx b/docs/api-reference/endpoints/app-connections/chef/get-by-id.mdx
new file mode 100644
index 000000000..8461cc553
--- /dev/null
+++ b/docs/api-reference/endpoints/app-connections/chef/get-by-id.mdx
@@ -0,0 +1,4 @@
+---
+title: "Get by ID"
+openapi: "GET /api/v1/app-connections/chef/{connectionId}"
+---
diff --git a/docs/api-reference/endpoints/app-connections/chef/get-by-name.mdx b/docs/api-reference/endpoints/app-connections/chef/get-by-name.mdx
new file mode 100644
index 000000000..f1042abdb
--- /dev/null
+++ b/docs/api-reference/endpoints/app-connections/chef/get-by-name.mdx
@@ -0,0 +1,4 @@
+---
+title: "Get by Name"
+openapi: "GET /api/v1/app-connections/chef/connection-name/{connectionName}"
+---
diff --git a/docs/api-reference/endpoints/app-connections/chef/list.mdx b/docs/api-reference/endpoints/app-connections/chef/list.mdx
new file mode 100644
index 000000000..dc18436a7
--- /dev/null
+++ b/docs/api-reference/endpoints/app-connections/chef/list.mdx
@@ -0,0 +1,4 @@
+---
+title: "List"
+openapi: "GET /api/v1/app-connections/chef"
+---
diff --git a/docs/api-reference/endpoints/app-connections/chef/update.mdx b/docs/api-reference/endpoints/app-connections/chef/update.mdx
new file mode 100644
index 000000000..780bea960
--- /dev/null
+++ b/docs/api-reference/endpoints/app-connections/chef/update.mdx
@@ -0,0 +1,10 @@
+---
+title: "Update"
+openapi: "PATCH /api/v1/app-connections/chef/{connectionId}"
+---
+
+
+ Check out the configuration docs for [Chef
+ Connections](/integrations/app-connections/chef) to learn how to obtain the
+ required credentials.
+
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/create.mdx b/docs/api-reference/endpoints/secret-syncs/chef/create.mdx
new file mode 100644
index 000000000..61b816d7d
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/create.mdx
@@ -0,0 +1,4 @@
+---
+title: "Create"
+openapi: "POST /api/v1/secret-syncs/chef"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/delete.mdx b/docs/api-reference/endpoints/secret-syncs/chef/delete.mdx
new file mode 100644
index 000000000..a43d83be1
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/delete.mdx
@@ -0,0 +1,4 @@
+---
+title: "Delete"
+openapi: "DELETE /api/v1/secret-syncs/chef/{syncId}"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/get-by-id.mdx b/docs/api-reference/endpoints/secret-syncs/chef/get-by-id.mdx
new file mode 100644
index 000000000..2efeb51e2
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/get-by-id.mdx
@@ -0,0 +1,4 @@
+---
+title: "Get by ID"
+openapi: "GET /api/v1/secret-syncs/chef/{syncId}"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/get-by-name.mdx b/docs/api-reference/endpoints/secret-syncs/chef/get-by-name.mdx
new file mode 100644
index 000000000..d6ac030d8
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/get-by-name.mdx
@@ -0,0 +1,4 @@
+---
+title: "Get by Name"
+openapi: "GET /api/v1/secret-syncs/chef/sync-name/{syncName}"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/import-secrets.mdx b/docs/api-reference/endpoints/secret-syncs/chef/import-secrets.mdx
new file mode 100644
index 000000000..734c89a95
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/import-secrets.mdx
@@ -0,0 +1,4 @@
+---
+title: "Import Secrets"
+openapi: "POST /api/v1/secret-syncs/chef/{syncId}/import-secrets"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/list.mdx b/docs/api-reference/endpoints/secret-syncs/chef/list.mdx
new file mode 100644
index 000000000..e38b35e43
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/list.mdx
@@ -0,0 +1,4 @@
+---
+title: "List"
+openapi: "GET /api/v1/secret-syncs/chef"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/remove-secrets.mdx b/docs/api-reference/endpoints/secret-syncs/chef/remove-secrets.mdx
new file mode 100644
index 000000000..e44df1c3e
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/remove-secrets.mdx
@@ -0,0 +1,4 @@
+---
+title: "Remove Secrets"
+openapi: "POST /api/v1/secret-syncs/chef/{syncId}/remove-secrets"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/sync-secrets.mdx b/docs/api-reference/endpoints/secret-syncs/chef/sync-secrets.mdx
new file mode 100644
index 000000000..8f8eefa04
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/sync-secrets.mdx
@@ -0,0 +1,4 @@
+---
+title: "Sync Secrets"
+openapi: "POST /api/v1/secret-syncs/chef/{syncId}/sync-secrets"
+---
diff --git a/docs/api-reference/endpoints/secret-syncs/chef/update.mdx b/docs/api-reference/endpoints/secret-syncs/chef/update.mdx
new file mode 100644
index 000000000..d5c39484d
--- /dev/null
+++ b/docs/api-reference/endpoints/secret-syncs/chef/update.mdx
@@ -0,0 +1,4 @@
+---
+title: "Update"
+openapi: "PATCH /api/v1/secret-syncs/chef/{syncId}"
+---
diff --git a/docs/docs.json b/docs/docs.json
index dda9adcfc..04d6d2aec 100644
--- a/docs/docs.json
+++ b/docs/docs.json
@@ -114,6 +114,7 @@
"integrations/app-connections/bitbucket",
"integrations/app-connections/camunda",
"integrations/app-connections/checkly",
+ "integrations/app-connections/chef",
"integrations/app-connections/cloudflare",
"integrations/app-connections/databricks",
"integrations/app-connections/digital-ocean",
@@ -539,6 +540,7 @@
"integrations/secret-syncs/bitbucket",
"integrations/secret-syncs/camunda",
"integrations/secret-syncs/checkly",
+ "integrations/secret-syncs/chef",
"integrations/secret-syncs/cloudflare-pages",
"integrations/secret-syncs/cloudflare-workers",
"integrations/secret-syncs/databricks",
@@ -1656,6 +1658,18 @@
"api-reference/endpoints/app-connections/checkly/delete"
]
},
+ {
+ "group": "Chef",
+ "pages": [
+ "api-reference/endpoints/app-connections/chef/list",
+ "api-reference/endpoints/app-connections/chef/available",
+ "api-reference/endpoints/app-connections/chef/get-by-id",
+ "api-reference/endpoints/app-connections/chef/get-by-name",
+ "api-reference/endpoints/app-connections/chef/create",
+ "api-reference/endpoints/app-connections/chef/update",
+ "api-reference/endpoints/app-connections/chef/delete"
+ ]
+ },
{
"group": "Cloudflare",
"pages": [
@@ -2135,6 +2149,20 @@
"api-reference/endpoints/secret-syncs/checkly/remove-secrets"
]
},
+ {
+ "group": "Chef",
+ "pages": [
+ "api-reference/endpoints/secret-syncs/chef/list",
+ "api-reference/endpoints/secret-syncs/chef/get-by-id",
+ "api-reference/endpoints/secret-syncs/chef/get-by-name",
+ "api-reference/endpoints/secret-syncs/chef/create",
+ "api-reference/endpoints/secret-syncs/chef/update",
+ "api-reference/endpoints/secret-syncs/chef/delete",
+ "api-reference/endpoints/secret-syncs/chef/sync-secrets",
+ "api-reference/endpoints/secret-syncs/chef/import-secrets",
+ "api-reference/endpoints/secret-syncs/chef/remove-secrets"
+ ]
+ },
{
"group": "Cloudflare Pages",
"pages": [
@@ -2290,6 +2318,7 @@
"api-reference/endpoints/secret-syncs/laravel-forge/update",
"api-reference/endpoints/secret-syncs/laravel-forge/delete",
"api-reference/endpoints/secret-syncs/laravel-forge/sync-secrets",
+ "api-reference/endpoints/secret-syncs/laravel-forge/import-secrets",
"api-reference/endpoints/secret-syncs/laravel-forge/remove-secrets"
]
},
diff --git a/docs/images/app-connections/chef/app-connection-form.png b/docs/images/app-connections/chef/app-connection-form.png
new file mode 100644
index 000000000..9ba5dc8e8
Binary files /dev/null and b/docs/images/app-connections/chef/app-connection-form.png differ
diff --git a/docs/images/app-connections/chef/app-connection-generated.png b/docs/images/app-connections/chef/app-connection-generated.png
new file mode 100644
index 000000000..c8ab79540
Binary files /dev/null and b/docs/images/app-connections/chef/app-connection-generated.png differ
diff --git a/docs/images/app-connections/chef/app-connection-option.png b/docs/images/app-connections/chef/app-connection-option.png
new file mode 100644
index 000000000..2a3e46920
Binary files /dev/null and b/docs/images/app-connections/chef/app-connection-option.png differ
diff --git a/docs/images/app-connections/chef/chef-connection-details.png b/docs/images/app-connections/chef/chef-connection-details.png
new file mode 100644
index 000000000..9fcb7ee0d
Binary files /dev/null and b/docs/images/app-connections/chef/chef-connection-details.png differ
diff --git a/docs/images/app-connections/chef/chef-dashboard.png b/docs/images/app-connections/chef/chef-dashboard.png
new file mode 100644
index 000000000..65195a8d0
Binary files /dev/null and b/docs/images/app-connections/chef/chef-dashboard.png differ
diff --git a/docs/images/app-connections/chef/chef-folder.png b/docs/images/app-connections/chef/chef-folder.png
new file mode 100644
index 000000000..29f698080
Binary files /dev/null and b/docs/images/app-connections/chef/chef-folder.png differ
diff --git a/docs/images/app-connections/chef/download-starter-kit.png b/docs/images/app-connections/chef/download-starter-kit.png
new file mode 100644
index 000000000..27f9582ad
Binary files /dev/null and b/docs/images/app-connections/chef/download-starter-kit.png differ
diff --git a/docs/images/app-connections/chef/extract-starter-kit.png b/docs/images/app-connections/chef/extract-starter-kit.png
new file mode 100644
index 000000000..8743dae9b
Binary files /dev/null and b/docs/images/app-connections/chef/extract-starter-kit.png differ
diff --git a/docs/images/app-connections/chef/private-key-file.png b/docs/images/app-connections/chef/private-key-file.png
new file mode 100644
index 000000000..052103d0e
Binary files /dev/null and b/docs/images/app-connections/chef/private-key-file.png differ
diff --git a/docs/images/app-connections/chef/starter-kit.png b/docs/images/app-connections/chef/starter-kit.png
new file mode 100644
index 000000000..b9b9621e4
Binary files /dev/null and b/docs/images/app-connections/chef/starter-kit.png differ
diff --git a/docs/images/secret-syncs/chef/select-option.png b/docs/images/secret-syncs/chef/select-option.png
new file mode 100644
index 000000000..5fba1e415
Binary files /dev/null and b/docs/images/secret-syncs/chef/select-option.png differ
diff --git a/docs/images/secret-syncs/chef/sync-created.png b/docs/images/secret-syncs/chef/sync-created.png
new file mode 100644
index 000000000..c6383deb3
Binary files /dev/null and b/docs/images/secret-syncs/chef/sync-created.png differ
diff --git a/docs/images/secret-syncs/chef/sync-destination.png b/docs/images/secret-syncs/chef/sync-destination.png
new file mode 100644
index 000000000..073631956
Binary files /dev/null and b/docs/images/secret-syncs/chef/sync-destination.png differ
diff --git a/docs/images/secret-syncs/chef/sync-details.png b/docs/images/secret-syncs/chef/sync-details.png
new file mode 100644
index 000000000..3e8a92008
Binary files /dev/null and b/docs/images/secret-syncs/chef/sync-details.png differ
diff --git a/docs/images/secret-syncs/chef/sync-options.png b/docs/images/secret-syncs/chef/sync-options.png
new file mode 100644
index 000000000..75f507310
Binary files /dev/null and b/docs/images/secret-syncs/chef/sync-options.png differ
diff --git a/docs/images/secret-syncs/chef/sync-review.png b/docs/images/secret-syncs/chef/sync-review.png
new file mode 100644
index 000000000..de0f10f8a
Binary files /dev/null and b/docs/images/secret-syncs/chef/sync-review.png differ
diff --git a/docs/images/secret-syncs/chef/sync-source.png b/docs/images/secret-syncs/chef/sync-source.png
new file mode 100644
index 000000000..877b104ef
Binary files /dev/null and b/docs/images/secret-syncs/chef/sync-source.png differ
diff --git a/docs/integrations/app-connections/chef.mdx b/docs/integrations/app-connections/chef.mdx
new file mode 100644
index 000000000..8e22b808d
--- /dev/null
+++ b/docs/integrations/app-connections/chef.mdx
@@ -0,0 +1,142 @@
+---
+title: "Chef Connection"
+description: "Learn how to configure a Chef Connection for Infisical."
+---
+
+Infisical supports the use of User Private Key to connect with Chef Server.
+
+Please access your **starter kit** to get all the required information to create a Chef Connection.
+
+
+
+ If you download a new starter kit, your previous private key/user key will
+ no longer be valid. Please make sure to update all the places that use the
+ previous private key.
+
+
+
+ 
+
+
+ 
+
+
+ 
+
+
+ 
+
+
+
+
+
+
+ Open your starter kit's folder(or `chef-repo`) and navigate to the `.chef`
+ folder.
+
+ Please make sure you have hidden files visible in your file explorer.
+
+ 
+
+
+ In the `.chef` folder, you will find a `[your-username].pem` file. 
+
+ **Private Key:** Copy the content of the private key file.
+
+
+
+ Open the `config.rb` file and copy the content of the file.
+ 
+
+ **User Name(1):** The user name of the chef user.
+
+ **Server URL(2):** The server url of the chef server.
+
+ **Organization Name(3):** The organization name of the chef server.
+
+
+
+
+## Create a Chef Connection in Infisical via UI
+
+
+
+
+
+ In your Infisical dashboard, navigate to the **App Connections** page in the desired project.
+ 
+
+
+ Click **+ Add Connection** and choose **Chef** Connection from the list of integrations.
+ 
+
+
+ Complete the form by providing:
+ - A descriptive name for the connection
+ - An optional description
+ - Server URL(optional): The URL of the Chef server to connect to(defaults to https://api.chef.io)
+ - Organization name
+ - User name
+ - Private key: Your Chef user's private key (.pem file)
+
+ 
+
+
+ After submitting the form, your **Chef Connection** will be successfully created and ready to use with your Infisical project.
+ 
+
+
+
+
+
+
+ To create a Chef Connection via API, send a request to the [Create Chef Connection](/api-reference/endpoints/app-connections/chef/create) endpoint.
+
+ ### Sample request
+
+ ```bash Request
+ curl --request POST \
+ --url https://app.infisical.com/api/v1/app-connections/chef \
+ --header 'Content-Type: application/json' \
+ --data '{
+ "name": "my-chef-connection",
+ "method": "user-key",
+ "projectId": "7ffbb072-2575-495a-b5b0-127f88caef78",
+ "credentials": {
+ "orgName": "my-org",
+ "userName": "my-user",
+ "privateKey": "your-private-key"
+ }
+ }'
+ ```
+
+ ### Sample response
+
+ ```bash Response
+ {
+ "appConnection": {
+ "id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
+ "name": "my-chef-connection",
+ "description": null,
+ "projectId": "7ffbb072-2575-495a-b5b0-127f88caef78",
+ "version": 1,
+ "orgId": "abcdef12-3456-7890-abcd-ef1234567890",
+ "createdAt": "2025-10-13T10:15:00.000Z",
+ "updatedAt": "2025-10-13T10:15:00.000Z",
+ "isPlatformManagedCredentials": false,
+ "credentialsHash": "d41d8cd98f00b204e9800998ecf8427e",
+ "app": "chef",
+ "method": "user-key",
+ "credentials": {
+ "orgName": "my-org",
+ "userName": "my-user",
+ }
+ }
+ }
+ ```
+
+
+
diff --git a/docs/integrations/secret-syncs/chef.mdx b/docs/integrations/secret-syncs/chef.mdx
new file mode 100644
index 000000000..17daaf37d
--- /dev/null
+++ b/docs/integrations/secret-syncs/chef.mdx
@@ -0,0 +1,154 @@
+---
+title: "Chef Sync"
+description: "Learn how to configure a Chef Sync for Infisical."
+---
+
+**Prerequisites:**
+
+- Create a [Chef Connection](/integrations/app-connections/chef)
+
+
+
+
+
+ Navigate to **Project** > **Integrations** and select the **Secret Syncs** tab. Click on the **Add Sync** button.
+
+ 
+
+
+ 
+
+
+ Configure the **Source** from where secrets should be retrieved, then click **Next**.
+
+ 
+
+ - **Environment**: The project environment to retrieve secrets from.
+ - **Secret Path**: The folder path to retrieve secrets from.
+
+
+ If you need to sync secrets from multiple folder locations, check out [secret imports](/documentation/platform/secret-reference#secret-imports).
+
+
+
+ Configure the **Destination** to where secrets should be deployed, then click **Next**.
+
+ 
+
+ - **Chef Connection**: The Chef Connection to authenticate with.
+ - **Data Bag**: The Data Bag Name to sync secrets to.
+ - **Data Bag Item**: The Data Bag Item Name to sync secrets to.
+
+
+ Configure the **Sync Options** to specify how secrets should be synced, then click **Next**.
+
+ 
+
+ - **Initial Sync Behavior**: Determines how Infisical should resolve the initial sync.
+ - **Overwrite Destination Secrets**: Removes any secrets at the destination endpoint not present in Infisical.
+ - **Import Secrets (Prioritize Infisical)**: Imports secrets from the destination endpoint before syncing, prioritizing values from Infisical over Laravel Forge when keys conflict.
+ - **Import Secrets (Prioritize Laravel Forge)**: Imports secrets from the destination endpoint before syncing, prioritizing values from Laravel Forge over Infisical when keys conflict.
+ - **Key Schema**: Template that determines how secret names are transformed when syncing, using `{{secretKey}}` as a placeholder for the original secret name and `{{environment}}` for the environment.
+
+ We highly recommend using a Key Schema to ensure that Infisical only manages the specific keys you intend, keeping everything else untouched.
+
+ - **Auto-Sync Enabled**: If enabled, secrets will automatically be synced from the source location when changes occur. Disable to enforce manual syncing only.
+ - **Disable Secret Deletion**: If enabled, Infisical will not remove secrets from the sync destination. Enable this option if you intend to manage some secrets manually outside of Infisical.
+
+
+ Configure the **Details** of your Chef Sync, then click **Next**.
+
+ 
+
+ - **Name**: The name of your sync. Must be slug-friendly.
+ - **Description**: An optional description for your sync.
+
+
+ Review your Chef Sync configuration, then click **Create Sync**.
+
+ 
+
+
+ If enabled, your Chef Sync will begin syncing your secrets to the destination endpoint.
+
+ 
+
+
+
+
+
+
+ To create a **Chef Sync**, make an API request to the [Create Chef Sync](/api-reference/endpoints/secret-syncs/chef/create) API endpoint.
+
+ ### Sample request
+
+ ```bash Request
+ curl --request POST \
+ --url https://app.infisical.com/api/v1/secret-syncs/chef \
+ --header 'Content-Type: application/json' \
+ --data '{
+ "name": "my-chef-sync",
+ "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
+ "description": "sync to chef site",
+ "connectionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
+ "environment": "dev",
+ "secretPath": "/",
+ "isEnabled": true,
+ "isAutoSyncEnabled": true,
+ "syncOptions": {
+ "initialSyncBehavior": "overwrite-destination",
+ "disableSecretDeletion": false
+ },
+ "destinationConfig": {
+ "dataBagName": "my-data-bag",
+ "dataBagItemName": "my-data-bag-item"
+ }
+ }'
+ ```
+
+ ### Sample response
+
+ ```bash Response
+ {
+ "secretSync": {
+ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
+ "name": "my-chef-sync",
+ "description": "sync to chef site",
+ "folderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
+ "connectionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
+ "createdAt": "2025-07-19T12:00:00Z",
+ "updatedAt": "2025-07-19T12:00:00Z",
+ "syncStatus": "succeeded",
+ "lastSyncJobId": "job-1234",
+ "lastSyncMessage": null,
+ "lastSyncedAt": "2025-07-19T12:00:00Z",
+ "syncOptions": {
+ "initialSyncBehavior": "overwrite-destination",
+ "disableSecretDeletion": false
+ },
+ "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
+ "connection": {
+ "app": "chef",
+ "name": "my-chef-connection",
+ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
+ },
+ "environment": {
+ "slug": "dev",
+ "name": "Development",
+ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
+ },
+ "folder": {
+ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
+ "path": "/"
+ },
+ "destination": "chef",
+ "destinationConfig": {
+ "dataBagName": "my-data-bag",
+ "dataBagItemName": "my-data-bag-item"
+ }
+ }
+ }
+ ```
+
+
+
diff --git a/docs/snippets/AppConnectionsBrowser.jsx b/docs/snippets/AppConnectionsBrowser.jsx
index cfc65d1fd..c74d9149a 100644
--- a/docs/snippets/AppConnectionsBrowser.jsx
+++ b/docs/snippets/AppConnectionsBrowser.jsx
@@ -47,6 +47,7 @@ export const AppConnectionsBrowser = () => {
{"name": "Auth0", "slug": "auth0", "path": "/integrations/app-connections/auth0", "description": "Learn how to connect your Auth0 to pull secrets from Infisical.", "category": "Identity & Auth"},
{"name": "Okta", "slug": "okta", "path": "/integrations/app-connections/okta", "description": "Learn how to connect your Okta to pull secrets from Infisical.", "category": "Identity & Auth"},
{"name": "Laravel Forge", "slug": "laravel-forge", "path": "/integrations/app-connections/laravel-forge", "description": "Learn how to connect your Laravel Forge to pull secrets from Infisical.", "category": "Hosting"},
+ {"name": "Chef", "slug": "chef", "path": "/integrations/app-connections/chef", "description": "Learn how to connect your Chef to pull secrets from Infisical.", "category": "DevOps Tools"},
].sort(function(a, b) {
return a.name.toLowerCase().localeCompare(b.name.toLowerCase());
});
diff --git a/docs/snippets/SecretSyncsBrowser.jsx b/docs/snippets/SecretSyncsBrowser.jsx
index 3598bf68e..c7b5806ea 100644
--- a/docs/snippets/SecretSyncsBrowser.jsx
+++ b/docs/snippets/SecretSyncsBrowser.jsx
@@ -37,7 +37,8 @@ export const SecretSyncsBrowser = () => {
{"name": "Humanitec", "slug": "humanitec", "path": "/integrations/secret-syncs/humanitec", "description": "Learn how to sync secrets from Infisical to Humanitec.", "category": "DevOps Tools"},
{"name": "OCI Vault", "slug": "oci-vault", "path": "/integrations/secret-syncs/oci-vault", "description": "Learn how to sync secrets from Infisical to OCI Vault.", "category": "Cloud Providers"},
{"name": "Zabbix", "slug": "zabbix", "path": "/integrations/secret-syncs/zabbix", "description": "Learn how to sync secrets from Infisical to Zabbix.", "category": "Monitoring"},
- {"name": "Laravel Forge", "slug": "laravel-forge", "path": "/integrations/secret-syncs/laravel-forge", "description": "Learn how to sync secrets from Infisical to Laravel Forge.", "category": "Hosting"}
+ {"name": "Laravel Forge", "slug": "laravel-forge", "path": "/integrations/secret-syncs/laravel-forge", "description": "Learn how to sync secrets from Infisical to Laravel Forge.", "category": "Hosting"},
+ {"name": "Chef", "slug": "chef", "path": "/integrations/secret-syncs/chef", "description": "Learn how to sync secrets from Infisical to Chef.", "category": "DevOps Tools"}
].sort(function(a, b) {
return a.name.toLowerCase().localeCompare(b.name.toLowerCase());
});