Can one combine resources with http_source? ```re...
# general
p
Can one combine resources with http_source?
Copy code
resources(
   name="foo"
   sources=[http_source(...),http_source(...)]
)
This is telling me that I need a list of strings.. =/
I don't think this is possible. Okay. I can do this with multiple resource targets, that is fine. That said, if I have N http_sources.. can I some how reference them all via one label? resource(name="foo"..) resource(name="bar"..) Instead of adding two dependencies to the required python_test targets.. could I some how reference both of those together?
a
(ping @bitter-ability-32190)
b
Yeah, can't use it for the "plural" target types. A macro could help reduce boilerplate though