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

Add `exluded_services` option to `signalfx_azure_integration ` resource

Open Shr3ps opened this issue 1 year ago • 0 comments

Hello,

Since the data resource signalfx_azure_services has been remove in v8.0.0 of the provider, we cannot longer list available services for Azure integration, so we cannot anymore "enable all but exclude some specific ones".

Our previous code to manage this was:

data "signalfx_azure_services" "azure_services" {
}

locals {
  azure_services   = data.signalfx_azure_services.azure_services.services[*].name
}

resource "signalfx_azure_integration" "azure_integration" {
...

  services            = setsubtract(local.azure_services, var.excluded_services)

...
}

Can you add a new attribute optional in order to be able to exclude some services?

Shr3ps avatar Nov 08 '23 16:11 Shr3ps