powershell 来自现有Azure PowerShell会话的AccessToken(Bearer)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 来自现有Azure PowerShell会话的AccessToken(Bearer)相关的知识,希望对你有一定的参考价值。
function Get-AzureRmCachedAccessToken()
{
$ErrorActionPreference = 'Stop'
if(-not (Get-Module AzureRm.Profile)) {
Import-Module AzureRm.Profile
}
$azureRmProfileModuleVersion = (Get-Module AzureRm.Profile).Version
# refactoring performed in AzureRm.Profile v3.0 or later
if($azureRmProfileModuleVersion.Major -ge 3) {
$azureRmProfile = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile
if(-not $azureRmProfile.Accounts.Count) {
Write-Error "Ensure you have logged in before calling this function."
}
} else {
# AzureRm.Profile < v3.0
$azureRmProfile = [Microsoft.WindowsAzure.Commands.Common.AzureRmProfileProvider]::Instance.Profile
if(-not $azureRmProfile.Context.Account.Count) {
Write-Error "Ensure you have logged in before calling this function."
}
}
$currentAzureContext = Get-AzureRmContext
$profileClient = New-Object Microsoft.Azure.Commands.ResourceManager.Common.RMProfileClient($azureRmProfile)
Write-Debug ("Getting access token for tenant" + $currentAzureContext.Subscription.TenantId)
$token = $profileClient.AcquireAccessToken($currentAzureContext.Subscription.TenantId)
$token.AccessToken
}
以上是关于powershell 来自现有Azure PowerShell会话的AccessToken(Bearer)的主要内容,如果未能解决你的问题,请参考以下文章
在新门户中通过 powershell 创建 azure 存储容器
Azure运维系列 8:使用现有磁盘创建虚拟机
尝试使用 powershell 从 Azure 还原数据库时,Octopus 部署找不到 SQL 凭据
Azure PowerShell Set-AzureService/Get-AzureService -error:托管服务不存在
是否有任何 PowerShell 脚本或命令可以从 Azure 门户获取租户中所有用户访问角色的报告?
将 Azure 数字孪生与现有云环境连接