Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 456 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 456 Bytes

EDEN

Projet EDEN - 2024

Structure générale

graph TD
    A[Start] --> B[createVM]
    B --> C[getNextAvailableVMID]
    C --> D{ID Available?}
    D -- Yes --> E[getVMId]
    D -- No --> F[Error: No Available ID]
    E --> G{Clone ID Found?}
    G -- Yes --> H[modifyVariablesFile]
    G -- No --> I[Error: No Clone ID]
    H --> J[executeTofuCommands]
    J --> K[VM Created]
    F --> L[End]
    I --> L
    K --> L
Loading