I’m attempting to create an instance with an API but getting it assigned to a specific project i cannot do. The closest I came is here: https://docs.digitalocean.com/reference/api/api-reference/#operation/databases_create_cluster:~:text=the database cluster.-,project_id,-string <uuid Basically it looks like I need a reference to the project in the Request body headers but when I look for that I’m having no such luck… I tried project:, project_id: but no luck
The only way i can see is to make the target project the default…which makes any new instance created via API be assigned to it…but then any instance i create would only be assigned to that. Kind of at a loss here
def create_do_droplette():
droplet = digitalocean.Droplet(token=API_DIGITALO_TOKEN,
name='Test1',
region='nyc1', # New York 1
image='ubuntu-20-04-x64', # Ubuntu 20.04 x64
size_slug='s-1vcpu-1gb', # 1GB RAM, 1 vCPU
tags='TestTag',
backups=True,
project_id="Test") # don't know about this here <<<<<<<<<<<<<<<
return droplet.create()
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.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi there,
I believe that you could create your Droplet first and then make a second API call to attach the newly created Droplet to the project.
For example:
For more information here is a reference to the API documentation:
https://docs.digitalocean.com/reference/api/api-reference/#operation/projects_assign_resources
The API documentation URL that you’ve shared is for database clusters rather than Droplets.
Hope that this helps!
Best,
Bobby