hi! I have resources defined for a job like this `...
# ask-community
t
hi! I have resources defined for a job like this
Copy code
resources = {
    'max_files_number': 3,
    'test_mode': True
}
so that I can use it in many ops. It works well. But I need an option to set resources values in dagit UI so I can play with it from GUI. I tried to do likee this in launchpad:
Copy code
resources:
  max_files_number: 
    config: 2
  test_mode: 
    config: true
and this doesn’t influence the number…
c
you need to create a configurable resource in order to do this. Right now you’re just passing static values as resources, but you’ll want to pass full resource definitions