无法使用Windows VM上的Terraform和Azure VM扩展自动映射Azure存储共享

时间:2019-03-18 11:02:30

标签: azure azure-storage terraform azure-files azure-storage-files

问题陈述 我正在尝试使用Azure VM扩展名自动将Azure文件共享映射到Windows VM。 VM扩展成功安装,该命令运行,但是登录到VM后,我看到驱动器已断开连接。

在尝试访问它时,我得到了错误的用户名或密码错误。但是,在计算机上运行PowerShell脚本可以正确映射网络驱动器,我可以访问它。

代码

resource "azurerm_virtual_machine_extension" "test" {
  # Custom VM extension documentation https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/custom-script-windows
  # additional documentation http://teknews.cloud/bootstrapping-azure-vms-with-terraform/, https://github.com/terraform-providers/terraform-provider-azurerm/issues/728
  name = "network_share"
  location = "${azurerm_resource_group.main.location}"
  resource_group_name = "${azurerm_resource_group.main.name}"
  #virtual_machine_name = "${azurerm_virtual_machine.vm.name}"
  virtual_machine_name = "${element(azurerm_virtual_machine.vm.*.name, count.index)}"
  publisher = "Microsoft.Compute"
  type = "CustomScriptExtension"
  type_handler_version = "1.9"
  count = "${var.vm_count}"

  settings = <<SETTINGS
  {
      "commandToExecute": "powershell -command \"[System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String('${base64encode(data.template_file.net_fileshare_script.rendered)}')) | Out-File -filepath net_fileshare_script.ps1\" && powershell -File net_fileshare_script.ps1"
  }
  SETTINGS

  depends_on = ["azurerm_virtual_machine.vm"]
}

data "template_file" "net_fileshare_script" {
  template = "${file("./scripts/net_fileshare_script.ps1")}"
}

1 个答案:

答案 0 :(得分:0)

我发现脚本按原样工作。问题在于,登录后远程用户将无法使用存储共享的凭据。

远程用户登录后,运行此命令 Invoke-Expression -Command "cmdkey /add:storageaccount.file.core.windows.net /user:AZURE\storageaccount /pass:storagekey" 使存储共享可供远程用户帐户访问。

NB:是否可以通过一次性脚本将凭证提供给多个用户帐户使用?