Convert CML2 lab topologies from YAML into HCL.
Project description
CML2TF: CML to Terraform converter
Converts existing Cisco Modeling Labs lab into Terraform HCL .tf files from exported lab topology YAML file.
This is an early version of the script. This version is compatible with terraform-provider-cml2 version 0.6.2/0.7.0. Not all features are implemented, yet. Please refer to TODO.md file for the list of unsupported features and current restrictions.
Installation
To use this package install it via PyPI pip install cml2tf
. It's recommended to use either a virtual environment or use something like pipx
to properly isolate the package.
Development
If you want to develop the package then PDM is needed. Follow their instructions on the web site to install PDM. This requires Python3, it's been tested w/ 3.8, 3.9, 3.10 and 3.11.
Once installed, you can get a development environment using the follwing steps:
-
Clone the repo
git clone https://github.com/WojciechowskiPiotr/cml-terraform-converter.git
-
Go to your project folder
cd cml-terraform-converter
-
Set up a Python venv. First make sure that you have Python 3 installed on your machine. We will then be using PDM to create an isolated environment with only the necessary packages.
pdm venv create pdm venv activate
Copy / paste the resulting string into your shell or use something like direnv to automate this.
Note: Creation of the venv is only needed once, activation whenever you want to work with the venv!
-
Install dependencies
pdm install --dev
-
Install the package as editable (optional, but eases development by installing the script / entry point). Don't commit it to the repo, though.
pdm add --dev --editable .
You can remove it again using
pdm remove --dev .
Code should be formatted with ruff which is installed as part of the dev dependencies. Please ensure to format your code before submitting a PR, the GH action will fail otherwise.
Usage
First, export the lab topology from Cisco Modeling Labs to the YAML file and store it in the project folder. Log into your Cisco Modeling Labs instance to export the lab, enter the lab you want to export from the top menu, select Lab → Download Lab, and save the file.
To convert a lab into Terraform files, use the following command: cml2tf -i lab.yaml
where lab.yaml is the name of the exported file.
As a result of running the script, a new folder lab will be created. The folder name is always the same as the exported YAML filename. It contains two files: variables.tf and main.tf. The first file contains variables like CML server URL, login, and password. Edit this file, providing the correct credentials. The main.tf has the topology for Terraform.
If a destination folder exists you need to use the -f
option to overwrite its content. This will let you update the converted main.tf file. The variables.tf file, if it exists, remains unchanged.
If you want to have the configurations of the lab nodes separated out into individual files which then you can provide the -c / --configs
flag. The main.tf file will include the exported configurations via file()
.
To read the full usage information issue cml2tf -h
command.
usage: cml2tf [-h] [-i INPUT] [-o OUTDIR] [-f]
options:
-h, --help show this help message and exit
Input options:
-i INPUT, --input INPUT
File with input lab topology in YAML exported from CML2
Output options:
-o OUTDIR, --outdir OUTDIR
Output directory name where terraform files will be created (by default input topology filename)
-c, --configs store configurations in separate files
-f, --force Overwrite files if destination folder exists
Usage example: cml2tf -i topology.yaml
Known issues
Use GitHub Issues to report any problems or share ideas about expanding the script.
Getting involved
If you want to contribute to this project, feel free to fork it and then send your proposal using a Pull Request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cml2tf-0.2.1.tar.gz
.
File metadata
- Download URL: cml2tf-0.2.1.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4822315161faa89da77666f891fd3b8a3eb636c79e002b61cddf9cb2796c7880 |
|
MD5 | 26ca82f283162f98dafd72903f1ec1e4 |
|
BLAKE2b-256 | 1f2fcfc2d59b834ab8a05fb27de8f44da96a27f5cd94e364d30d64c80d911bb8 |
File details
Details for the file cml2tf-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: cml2tf-0.2.1-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f65baa7e7d140393ac6318a13e2ee917e9b3a85e68577d0bc1fc4130e3f25ac |
|
MD5 | 26a183737b46628f631e52fe9a032b25 |
|
BLAKE2b-256 | d05f1ec1b0bc80be9aab6b5d34f5a4f5775c318ae930c284364270c7fc470e7c |