Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sshnaidm/transible
Convert existing cloud configuration to ansible playbooks
https://github.com/sshnaidm/transible
ansible ansible-openstack ansible-playbooks cloud configuration-management infrastructure-as-code infrastructure-automation infrastructure-management openstack
Last synced: 8 days ago
JSON representation
Convert existing cloud configuration to ansible playbooks
- Host: GitHub
- URL: https://github.com/sshnaidm/transible
- Owner: sshnaidm
- License: apache-2.0
- Created: 2019-10-16T15:09:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-13T20:59:02.000Z (11 months ago)
- Last Synced: 2024-05-01T13:30:51.413Z (7 months ago)
- Topics: ansible, ansible-openstack, ansible-playbooks, cloud, configuration-management, infrastructure-as-code, infrastructure-automation, infrastructure-management, openstack
- Language: Python
- Size: 3.71 MB
- Stars: 28
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Transible
## Convert existing cloud configuration to Ansible playbooks
In many infrastructure projects, dealing with existing cloud resources is a common scenario. Whether you've set up resources manually in your cloud provider's console or CLI, or used infrastructure as code tools like Terraform or AWS CloudFormation, Transible is here to help you adopt and manage those resources seamlessly.
### Supported Cloud Providers
Transible currently supports OpenStack, Azure, and Amazon AWS. Please note that the product is still in development, with ongoing enhancements and additional cloud provider support planned.
Run for Openstack:
```bash
./transible.py --os-cloud my-cloud-name --from openstack --to ansible
```where `my-cloud-name` is your cloud name in [clouds.yaml](https://docs.openstack.org/python-openstackclient/train/configuration/index.html#configuration-files)
Run for Amazon AWS (make sure your credentials are in `~/.aws/config`):
```bash
./transible.py --from aws --to ansible
```Or specify the AWS profile as environment variable:
```bash
AWS_PROFILE=readonly ./transible.py --from aws --to ansible
```Run for Azure:
```bash
AZURE_SUBSCRIPTION_ID=
AZURE_RESOURCE_GROUP=
./transible.py --from azure --to ansible
```## Demo
![Trabsible Demo](https://github.com/sshnaidm/transible/raw/master/transible-demo.gif)