I have checked for all related questions but have not found a suitable answer.
I have a keyvault secret successfully set and I am able to access and parse it into my ArcGIS online service using python without any problem using the following code;
from arcgis.gis import GIS
from azure.identity import DefaultAzureCredential
from azure.keyvault.secrets import SecretClient
credential = DefaultAzureCredential()
secret_client = SecretClient(vault_url="vaulturl", credential=credential)
secret = secret_client.get_secret("papa-mama-Secret")
gis = GIS("urlGIS", "AGOLaccountname", secret.value)
The issue is when I print secret.value
, the secret key is displayed. I dont want this to happen for security reasons. Is there away to ensure it can be passed into the service but when printed the key comes out as special characters say ***** or ####?
It seems that you could not change the print method just for
secret.value
. So, disabling theprint
method is better.You could use
blockPrint()
to disableprint
.