Report this

What is the reason for this report?

custom command with user-data via API call in python script

Posted on July 11, 2016

Hello,

I am trying to apply user-data with the following Python code, but it’s not working. Any ideas?

The script creates a valid droplet, but the command in user-data is not executed.

USER_DATA = "#cloud-config\n\nruncmd:\n  - screen -d -m ...my command..."
r = requests.post(API_BASE_URL + "droplets", headers=API_HEADERS, data=json.dumps({
        "name": "test",
        "region": "tor1",
        "size": "512mb",
        "image": 12345,
        "ssh_keys": [2296372],
        "user-data": USER_DATA
    }))


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!

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.

Ok, I’ve figured it out. the “user-data” attribute was misspelled (“user_data” is the right way)

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.