If you load data using the default driver, you must use `configure_s3_access` from the `datacube` libary, i.e.,: ```python from datacube.utils.aws import configure_s3_access configure_s3_access(requester_pays=True) dc = Datacube() dc.load( ... ) ... ``` Whereas if you use the `rio` driver, then it needs to be imported from `odc.stac.configure_s3_access`. ```python from odc.stac import configure_s3_access configure_s3_access(requester_pays=True) dc = Datacube() dc.load( ... driver="rio" ) ... ``` and this is rather unintuitive!