Environments
An environment is an isolated workspace within your tenant. It groups, under the same context, the resources that an automation needs: agents, processes, credentials, triggers and the history of executions.
Think of an environment as a separate “room”: what happens in one does not affect the others. This allows you to test risk-free before touching what is already in operation.
Why separate into environments
Section titled “Why separate into environments”Without environments, any test would run on the same systems and data as the actual operation. Standard practice is to have at least two, and three are common:
| Environment | Purpose | Apunta a… |
|---|---|---|
| Desarrollo | Rapid iteration as you build automation | Sistemas de juguete / datos ficticios |
| Pruebas | Prior validation before promoting to production | Sistemas de prueba / staging |
| Production | Automations in real operation | Real company systems |
Each environment has its own credentials, so the same playbook that in Testing writes to a test database, in Production writes to the real one — without changing the playbook, just the value of the credential.
Create an environment
Section titled “Create an environment”- In the portal, go to Environments in the side menu.
- Click New Environment.
- Enter a name (e.g.
Producción) and an optional description. - Save. The environment is immediately available and you enter its details.

Within the environment you will see the tabs for its resources: Agents, Processes, Executions, Triggers and Credentials.
Isolation: what it means in practice
Section titled “Isolation: what it means in practice”- An agent registered on
Produccióndoes not receive executions fromPruebas. Each agent belongs to a single environment. - credentials from one environment are not visible from another.
- The executions and their logs are recorded in the environment where they occurred.
- A process lives in an environment and references a package in a specific version.
Promote automation between environments
Section titled “Promote automation between environments”The recommended flow to get something from Pruebas to Producción:
- Publish the package from the Designer with a new version number. See Publish and version.
- In the target environment, create or update the process to point to that version. See Create a process.
- Verifies that the required credentials exist in the target environment (same logical name, different value).
- Confirms that agents in the target environment are
online. - Launch a test run and check the logs.
Next steps
Section titled “Next steps”- What is an agent — the executor within the environment.
- Create a process — prepare an automation to run.
- Credential Management — secrets per environment.