Endpoint environment variables
Through an endpoint update, you can assign values to environment variables that will be exposed to the deployment.
Using the client
Endpoint.update()
provides a parameter for setting the endpoint's environment variables. It can be used alongside any update strategy.
env_vars
takes a dictionary of string environment variable names to string values, and will be made available to the model when it is deployed.
Environment variables that were captured via RegisteredModelVersion.log_environment()
will also be provided to the deployed model.
Last updated