create-folder
Create and organize folders in Infisical for structured secret management. Specify folder name, project ID, environment, optional path, and description for efficient organization.
Instructions
Create a new folder in Infisical
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The description of the folder to create | |
environment | Yes | The environment to create the folder in (required) | |
name | Yes | The name of the folder to create (required) | |
path | No | The path to create the folder in (Defaults to /) | |
projectId | Yes | The project to create the folder in (required) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the folder to create",
"type": "string"
},
"environment": {
"description": "The environment to create the folder in (required)",
"type": "string"
},
"name": {
"description": "The name of the folder to create (required)",
"type": "string"
},
"path": {
"description": "The path to create the folder in (Defaults to /)",
"type": "string"
},
"projectId": {
"description": "The project to create the folder in (required)",
"type": "string"
}
},
"required": [
"name",
"projectId",
"environment"
],
"type": "object"
}