Question

Cannot execute Ansible playbook to provision DigitalOcean droplets

I am trying to execute this playbook that provisions two droplets from a CentOS 7 VM on VMWare Fusion running Ansible 2.9.9. Already have exported my API token as environment variables TOKEN and DO_API_TOKEN with the correct PAT. Also registered the SSH keys of the CentOS7 VM and the host MacBook on my DigitalOcean account.

# original source: https://nickolasfisher.com/blog/How-to-Create-Multiple-Digital-Ocean-Droplets-and-Provision-Them-Using-Ansible
---
- hosts: localhost
  connection: local
  gather_facts: false

  tasks:
    - name: create one droplet..
      digital_ocean_droplet:
        unique_name: yes
        region: 'nyc1'
        image: 'ubuntu-18-10-x64'
        wait_timeout: 100
        name: 'plswork-do-test1' #"{{ item }}"
        size: 's-1vcpu-1gb'
        state: present
      register: created_droplets
      with_items:
        - "tmp-droplet-1"
        - "tmp-droplet-2"

    - name: add to dynamic inventory
      add_host:
        name: '{{ created_droplets.ip_address }}'
        group: pap6-test
      with_items: '{{ created_droplets.results }}'

    - debug:
        msg: 'ID is {{ created_droplets.data.droplat.id }}, IP is {{ created_droplets.data.ip_address }}'

When I execute this playbook, it fails with following error.

PLAY [localhost] ****************************************************************************************

TASK [create one droplet..] *****************************************************************************
fatal: [localhost]: FAILED! => {"changed": false, "msg": "You specified an invalid image for Droplet creation."}

PLAY RECAP **********************************************************************************************
localhost                  : ok=0    changed=0    unreachable=0    failed=1    skipped=0    rescued=0    ignored=0   

Since it mentions an invalid image, I checked the slugs of the image,region and size, all of which were correct. I am able to curl to api.digitalocean.com to provision droplets. What should I do in order to resolve this problem? Is this a common issue? How do you provision DigitalOcean Droplets using Ansible?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
June 8, 2020
Accepted Answer

Hi there @nhyun,

It looks like you are using ubuntu-18-10-x64 which does not exist, can you try changing it to ubuntu-18-04-x64?

Let me know how it goes. Regards, Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.