-
Notifications
You must be signed in to change notification settings - Fork 572
Closed
Labels
Description
Hi,
In complex bake files, I would like to use advanced interpolation syntax in order reduce duplication:
- Currently
target "front" {
context = "front"
tags = ["front"]
}
- Expected
target "front" {
# using the name of the target
context = target.front.name
# and / or using embedded target settings
tags = [target.front.context]
}
This should be helpful also for groups.
Thanks !
devinrsmith, iraadit, nuzz, itpropro and machinehead