You can always do something like this: ``` config...
# python
i
You can always do something like this:
Copy code
config = pulumi.Config("myconfig")
if config.require_bool("do_something_special"):
    magic_value = config.require("special_config")
else:
    magic_value = "not special value"
Is that what you mean?