github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/website/source/docs/providers/azurerm/d/client_config.html.markdown (about) 1 --- 2 layout: "azurerm" 3 page_title: "Azure Resource Manager: azurerm_client_config" 4 sidebar_current: "docs-azurerm-datasource-client-config" 5 description: |- 6 Get information about the configuration of the azurerm provider. 7 --- 8 9 # azurerm\_client\_config 10 11 Use this data source to access the configuration of the Azure Resource Manager 12 provider. 13 14 ## Example Usage 15 16 ``` 17 data "azurerm_client_config" "current" {} 18 19 output "account_id" { 20 value = "${data.azurerm_client_config.current.account_id}" 21 } 22 ``` 23 24 ## Argument Reference 25 26 There are no arguments available for this data source. 27 28 ## Attributes Reference 29 30 * `client_id` is set to the Azure Client ID. 31 * `tenant_id` is set to the Azure Tenant ID. 32 * `subscription_id` is set to the Azure Subscription ID.