I don't believe it

This commit is contained in:
2023-03-27 21:32:55 +03:00
parent 227f7fce14
commit 01f0cd3850
3 changed files with 33 additions and 6 deletions

View File

@@ -60,15 +60,16 @@ For AWS you firstly need an [account](https://aws.amazon.com/account/) and then
# Dependencies 📦
We would have 3 external dependecies but due to missing functionality in libcloud when it comes to Azure management we need 6.
We would have 4 external dependecies but due to missing functionality in libcloud when it comes to Azure management we need 7.
1. [libcloud](https://github.com/apache/libcloud)
2. [python-dotenv](https://github.com/theskumar/python-dotenv)
1. [libcloud](https://github.com/apache/libcloud) which is the main dependency to connect to the cloud providers
2. [python-dotenv](https://github.com/theskumar/python-dotenv) which is used to read the `.env` file
3. [paramiko](https://github.com/paramiko/paramiko) which is actually needed for the deployment of libcloud
4. [azure-sdk-for-python](https://github.com/Azure/azure-sdk-for-python) from which we need
1. [azure-identity](https://pypi.org/project/azure-identity/)
2. [azure-mgmt-resource](https://pypi.org/project/azure-mgmt-resource/)
3. [azure-mgmt-network](https://pypi.org/project/azure-mgmt-network/)
1. [azure-identity](https://pypi.org/project/azure-identity/) to authenticate with Azure
2. [azure-mgmt-resource](https://pypi.org/project/azure-mgmt-resource/) to manage Azure resources
3. [azure-mgmt-network](https://pypi.org/project/azure-mgmt-network/) to manage Azure networks
5. [shtab](https://github.com/iterative/shtab) which is used to generate bash and zsh completion scripts
# Installation 🛠️