I am deploying my machine learning model to an azure container instance through a pipeline using the code snipplet below:
from azureml.core.webservice import AciWebservice
deployment_config = AciWebservice.deploy_configuration(
cpu_cores=0.5, memory_gb=1, auth_enabled=True
)
And the problem is that I have a secret environment which i want to use in score.py
but since I cannot pass this value or cannot set an environment variable, i am unable to use it.
How to overcome this issue?