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

Adding Tags sometimes causes Pipelines to not be loaded #399

Closed
graza-io opened this issue May 2, 2024 · 0 comments
Closed

Adding Tags sometimes causes Pipelines to not be loaded #399

graza-io opened this issue May 2, 2024 · 0 comments
Labels
blocker bug Something isn't working

Comments

@graza-io
Copy link
Contributor

graza-io commented May 2, 2024

Context

Sometimes when adding tags to a pipeline using following approach, the pipeline doesn't get loaded by flowpipe:

tags = merge(local.ebs_common_tags, { class = "unused" })

Where the locals are:

locals {
  aws_thrifty_common_tags = {
    category = "Cost"
    plugin   = "aws"
    service  = "AWS"
  }
}

locals {
  ebs_common_tags = merge(local.aws_thrifty_common_tags, {
    service = "AWS/EBS"
  })
}

locals {
  s3_common_tags = merge(local.aws_thrifty_common_tags, {
    service = "AWS/S3"
  })
}

However, this isn't always 100% reproducible as the following on a different pipeline works fine:

tags = merge(local.s3_common_tags, { class = "managed" })

Haven't been able to determine why this occurs; just that it does for certain pipelines.

Flowpipe Version:

❯ flowpipe --version
Flowpipe v0.4.4
@graza-io graza-io added bug Something isn't working blocker labels May 2, 2024
@vhadianto vhadianto transferred this issue from turbot/flowpipe May 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocker bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant