We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Tags
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 v0.4.4
The text was updated successfully, but these errors were encountered:
File load ordering issue with map type locals. #399.
locals
b7e1bd1
d04f47e
File load ordering bug. Fixes #399. (#400)
05f44d3
No branches or pull requests
Context
Sometimes when adding tags to a pipeline using following approach, the pipeline doesn't get loaded by flowpipe:
Where the locals are:
However, this isn't always 100% reproducible as the following on a different pipeline works fine:
Haven't been able to determine why this occurs; just that it does for certain pipelines.
Flowpipe Version:
The text was updated successfully, but these errors were encountered: