agent: |
nQgDM95JkpjjQ71IRHWpGet Azure Subscription Id from CLI
Get Azure Subscription Id from CLI
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
This task retrieves the unique identifier for an Azure subscription using the Azure CLI. This ID is essential for managing resources and services tied to a specific Azure subscription programmatically.
inputs
outputs
import json
try:
result = _exe(None, "az account show")
account_info = json.loads(result)
subscription_id = account_info["id"]
print("Fetched Subscription Id")
print(subscription_id) # for debugging
except json.JSONDecodeError:
print("Error decoding JSON response from Azure CLI.")
subscription_id = None
copied