create-environment
Set up new environments in Infisical by specifying project ID, name, and slug. This tool facilitates organized secret management within defined project structures.
Instructions
Create a new environment in Infisical
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the environment to create (required) | |
position | No | The position of the environment to create | |
projectId | Yes | The ID of the project to create the environment in (required) | |
slug | Yes | The slug of the environment to create (required) |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the environment to create (required)",
"type": "string"
},
"position": {
"description": "The position of the environment to create",
"type": "number"
},
"projectId": {
"description": "The ID of the project to create the environment in (required)",
"type": "string"
},
"slug": {
"description": "The slug of the environment to create (required)",
"type": "string"
}
},
"required": [
"projectId",
"name",
"slug"
],
"type": "object"
}