💻 DigitalOcean Provisioning with Ansible

First Published: 2023-08-04

Prerequisites

requirements.yml

---
collections:
  - name: community.digitalocean

inventory.yml

---
digitalocean:
  hosts:
    megamind.example.com:

ansible.cfg

[defaults]
inventory = inventory.yml

The Playbooks

First, run ansible-galaxy install -r requirements.yml to install the digital ocean module.
In the following, ~/.ssh/digital-ocean.pub points to my public key.
You may need to adapt that path.

provision.yml

---
- name: Provision Digital Ocean Ressources
  hosts: localhost
  vars:
    oauth_token: "{{ lookup('ansible.builtin.file', '.token') }}"
  tasks:

    - name: Register SSH Public Key
      community.digitalocean.digital_ocean_sshkey:
        name: "Digital Ocean SSH Key"
        oauth_token: "{{ oauth_token }}"
        ssh_pub_key: "{{ lookup('ansible.builtin.file',
                         '~/.ssh/digital-ocean.pub') }}"
        state: present
      register: sshkey_result

    - name: Create Droplet
      community.digitalocean.digital_ocean_droplet:
        state: present
        oauth_token: "{{ oauth_token }}"
        name: "{{ item }}"
        size: s-1vcpu-512mb-10gb
        region: fra1
        image: debian-12-x64
        unique_name: true
        ssh_keys: ["{{ sshkey_result.data.ssh_key.id }}"]
      with_inventory_hostnames:
        - digitalocean
      register: droplet_result

    - name: Persist IP address in hostfile
      become: true
      ansible.builtin.lineinfile:
        dest: /etc/hosts
        regexp: '.*{{ item.data.droplet.name }}$'
        line: "{{ item.data.droplet.networks.v4.0.ip_address }}
               {{ item.data.droplet.name }}"
        state: present
      with_items: "{{ droplet_result.results }}"

Please refer to the api docs for regions, image and size shorthands.
To provision your droplet now run ansible-playbook provision.yml
Congrats, you should now have a virtual private server in the cloud.

destroy.yml

---
- hosts: localhost
  name: Cleanup
  vars:
    oauth_token: "{{ lookup('ansible.builtin.file', '.token') }}"
  tasks:

    - name: Destroy Droplet
      community.digitalocean.digital_ocean_droplet:
        state: absent
        oauth_token: "{{ oauth_token }}"
        name: "{{ item }}"
        unique_name: true
      with_inventory_hostnames:
        - digitalocean

    - name: Retrieve DigitalOcean Customer Balance
      community.digitalocean.digital_ocean_balance_info:
        oauth_token: "{{ oauth_token }}"
      register: balance

    - name: Display balance
      ansible.builtin.debug:
        msg: |
          Total|MTD: {{ balance.data.account_balance }}|
                     {{ balance.data.month_to_date_usage }}

Let's save some bucks while we're learning systems administration and deprovision our servers when we're done playing with them for the day.
Run ansible-playbook destroy.yml to squash your cloud infrastructure.
This playbook will also display your current account balance and usage in the running month.

Common Errors

If the playbook run fails at the "Persist IP address in hostfile" step, it spits out a large error message. This can be fixed by running sudo echo hi and then retrying. You need root privileges to write to your hostfile after all.

If the playbook run fails at the "Register SSH public key" step, it will fail with an HTTP 401 status code. Seeing this error message indicates your api token has expired.

What now?

To dive further into ansible, I recommend Jeff Geerlings book Ansible for Devops
You can also check out my vps setup
The code for this article is available here

If you run into any problems, feel free to reach out.


💻 Why I prefer VA Monitors › ⌂ ‹ 💻 Infrastructure with the DANG Stack