Terraform-provider-digitalocean: provider/digitalocean: Add monitoring attribute

Created on 13 Jun 2017  路  2Comments  路  Source: digitalocean/terraform-provider-digitalocean

_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._


Terraform Version

v0.9.2

Affected Resource(s)

  • digitalocean_droplet

Terraform Configuration Files

provider "digitalocean" {
  token = "TOKEN"
}
resource "digitalocean_droplet" "droplet-1" {
  image = "ubuntu-16-04-x64"
  name = "droplet-01"
  region = "nyc3"
  size = "512mb"
  monitoring = true
}

Expected Behavior

A new droplet should be created with Monitoring enabled.

Actual Behavior

1 error(s) occurred:

* digitalocean_droplet.droplet-1: : invalid or unknown key: monitoring

Steps to Reproduce

  1. terraform plan

DigitalOcean API allows to enable Monitoring while creating a new droplet.

Godo already has the necessary field.

enhancement

Most helpful comment

This was implemented in #38 which was merged today and will be part of the next release 馃帀

All 2 comments

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!

Was this page helpful?
0 / 5 - 0 ratings