Skip to main content

Ansible modules for the mist.io service

Project description

mist.ansible
============

Ansible module for mist.io service

Installation
============
```
pip install mist.ansible

```


Simple Example of Provisioning
==============================
```
---
- name: Provisioning playbook for digitalocean
hosts: localhost
tasks:
- name: Ensure DigitalOcean backend is present
mist_backends:
mist_email: yourmist@account.com
mist_password: yourmistpassword
provider: digitalocean
state: present
backend_secret: digital_secret_key
name: DigitalBackend
- name: Create Machine
mist:
mist_email: yourmist@account.com
mist_password: yourmistpassword
backend: DigitalBackend
key: UploadedKey
location_id: id_of_chosen_location
size_id: id_of_machine_size
image_id: id_of_image
name: digimachine
```

Full Example Playbook
=====================
```
---
- name: Provisioning playbook for nephoscale
hosts: localhost
tasks:
- name: Ensure NephoScale backend is present
mist_backends:
mist_email: yourmist@account.com
mist_password: yourmistpassword
provider: nephoscale
state: present
backend_key: nepho_username
backend_secret: nepho_password
name: Nepho
- name: Generate Key and save locally
mist_keys:
mist_email: yourmist@account.com
mist_password: yourmistpassword
name: NephoKey
auto_generate: true
save_locally: true
local_save_path: /home/user/.ssh/NephoKey
- name: Search for Ubuntu images
mist_images:
mist_email: yourmist@account.com
mist_password: yourmistpassword
backend: Nepho
search_term: Ubuntu
register: images
- name: List available sizes
mist_sizes:
mist_email: yourmist@account.com
mist_password: yourmistpassword
backend: Nepho
register: sizes
- name: List available locations
mist_locations:
mist_email: yourmist@account.com
mist_password: yourmistpassword
backend: Nepho
register: locations
- name: Create Machine
mist:
mist_email: yourmist@account.com
mist_password: yourmistpassword
backend: Nepho
key: NephoKey
location_id: "{{ locations['locations'][0]['id'] }}"
size_id: "{{ sizes['sizes'][0]['id'] }}"
image_id: "{{ images['images'][0]['id'] }}"
name: nephomachine
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mist.ansible-0.1.8.tar.gz (9.3 kB view details)

Uploaded Source

File details

Details for the file mist.ansible-0.1.8.tar.gz.

File metadata

File hashes

Hashes for mist.ansible-0.1.8.tar.gz
Algorithm Hash digest
SHA256 1a7942a0342ec7584d79a2dc1ada4c34b1d9bb06a3ad2597cfb64a4cf6b8d6ad
MD5 84cdf3cf63d6f36fad0cd9effd2afd74
BLAKE2b-256 861762b83eaa0a67432cfa3704334ad5a39fdccae18510e9107924cb9471e45f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page