_This issue was originally opened by @skovorodkin as hashicorp/terraform#13376. It was migrated here as part of the provider split. The original body of the issue is below._
v0.9.2
provider "digitalocean" {
token = "TOKEN"
}
resource "digitalocean_droplet" "droplet-1" {
image = "ubuntu-16-04-x64"
name = "droplet-01"
region = "nyc3"
size = "512mb"
monitoring = true
}
A new droplet should be created with Monitoring enabled.
1 error(s) occurred:
* digitalocean_droplet.droplet-1: : invalid or unknown key: monitoring
terraform planDigitalOcean API allows to enable Monitoring while creating a new droplet.
Godo already has the necessary field.
This was implemented in #38 which was merged today and will be part of the next release 馃帀
@radeksimko is there a roadmap somewhere as to when the next release will happen, or any docs on how the community can contribute to help get there? It'll be great to see this update released!
Most helpful comment
This was implemented in #38 which was merged today and will be part of the next release 馃帀