terraform-provider-nifi icon indicating copy to clipboard operation
terraform-provider-nifi copied to clipboard

[WIP] feat: add processor and processor group comments

Open tlvince opened this issue 6 years ago • 2 comments

Adds comments to the processor and processor group resources.

WIP terraform plan picks up these changes, but after terraform apply, I'm not seeing them in NiFi. Any ideas?

Closes #22.

tlvince avatar Dec 17 '18 12:12 tlvince

LGTM

egorpushkin avatar Dec 21 '18 07:12 egorpushkin

@egorpushkin could you give it a try? I'd expect something like the following to (eventually) work:

resource "nifi_process_group" "local_flow" {
  component {
    parent_group_id = "${var.nifi_root_process_group_id}"
    name = "local_flow"
    comments = "hello world"

    position {
      x = 0
      y = 0
    }
  }
}

tlvince avatar Dec 21 '18 10:12 tlvince