User Guides
Provide your own Credentials
You can provide your own cloud provider credentials to Launchflow by passing them into your BuildFlow FlowOptions. This will ensure that your deployment uses the provided credentials when making requests.
This is useful if you are using consumers to read from sources and write to sinks.
from buildflow import Flow, FlowOptions
app = Flow(
flow_optoins=FlowOptions(
gcp_service_account_info=...
aws_access_key_id=...
aws_secret_access_key=...
)
)