I have terraform script for deploying and provisioning DigitalOcean droplets and I wanna specify custom DO project for this instances instead of default one.
I couldn't find any references for project
attribute in the documentation for digitalocean_droplet
resource: https://www.terraform.io/docs/providers/do/r/droplet.html
I wanna be able to do something like this:
resource "digitalocean_droplet" "node" {
...
project = "test"
...
}
So instances deployed with this terraform script will be allocated to test
project in DO: