You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Secret._canonicalize_id adds the secret: prefix if it's not there, but it doesn't add the model UUID. It would be helpful if it added the model UUID too, especially for cross-model relations. See more information at https://bugs.launchpad.net/juju/+bug/2075153
# Current logic:idifid.startswith('secret:') elsef'secret:{id}'# Change it to something like:idifid.startswith('secret:') elsef'secret://{model_uuid}/{id}'
The text was updated successfully, but these errors were encountered:
Currently
Secret._canonicalize_id
adds thesecret:
prefix if it's not there, but it doesn't add the model UUID. It would be helpful if it added the model UUID too, especially for cross-model relations. See more information at https://bugs.launchpad.net/juju/+bug/2075153The text was updated successfully, but these errors were encountered: