Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add exluded_services option to signalfx_azure_integration resource #457

Open
Shr3ps opened this issue Nov 8, 2023 · 0 comments
Open

Add exluded_services option to signalfx_azure_integration resource #457

Shr3ps opened this issue Nov 8, 2023 · 0 comments

Comments

@Shr3ps
Copy link

Shr3ps commented Nov 8, 2023

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant