== ANSWERED == I've a dejavu that `"*"` is support...
# ask-community
p
== ANSWERED == I've a dejavu that
"*"
is supported in a
RunConfig
? like
Copy code
ops:
  '*':
    base_url: '<http://localhost:8000>'
    default_retries: 3
  'my_ops':
    foo: 'bar'
which is the available to all ops? but cannot find any documentation about 😕 If that's a hallucination, how can I share a config with all ops?
z
The canonical way used to be with make_values_resource, but I don't know how that's changed with the move to pythonic config
c
you can now just use a ConfigurableResource for this purpose with
.configure_at_launch()
👌 1
fwiw i do think you hallucinated that run config - not sure that ever worked lol
❤️ 1
p
thx @chris managed to get
ConfigurableResources
working!