UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

31 lines (30 loc) 917 B
import * as pulumi from "@pulumi/pulumi"; /** * Use this function to access the current configuration of the native Azure provider. */ export declare function getClientConfig(opts?: pulumi.InvokeOptions): Promise<GetClientConfigResult>; /** * Configuration values returned by getClientConfig. */ export interface GetClientConfigResult { /** * Azure Client ID (Application Object ID). */ readonly clientId: string; /** * Azure Object ID of the current user or service principal. */ readonly objectId: string; /** * Azure Subscription ID */ readonly subscriptionId: string; /** * Azure Tenant ID */ readonly tenantId: string; } /** * Use this function to access the current configuration of the native Azure provider. */ export declare function getClientConfigOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClientConfigResult>;