qv
This commit is contained in:
@@ -21,7 +21,7 @@ resource "random_password" "password" {
|
||||
locals {
|
||||
virtual_machine_name = "${var.prefix}-${random_id.randomMachineId.hex}"
|
||||
admin_username = var.admin_username
|
||||
admin_password = random_password.password.result
|
||||
admin_password = nonsensitive(random_password.password.result)
|
||||
}
|
||||
|
||||
module "qmi-nic" {
|
||||
@@ -114,7 +114,7 @@ resource "azurerm_windows_virtual_machine" "vm" {
|
||||
|
||||
module "win-common" {
|
||||
|
||||
source = "git::https://gitlab.com/qmi/qmi-cloud-tf-modules.git//win-common"
|
||||
source = "git::https://gitlab.com/qmi/qmi-cloud-tf-modules.git//win-common?ref=dev2"
|
||||
|
||||
depends_on = [
|
||||
azurerm_windows_virtual_machine.vm
|
||||
|
||||
@@ -11,7 +11,7 @@ output "admin_username" {
|
||||
}
|
||||
|
||||
output "admin_password" {
|
||||
value = random_password.password.result
|
||||
value = nonsensitive(random_password.password.result)
|
||||
}
|
||||
|
||||
output "nic_id" {
|
||||
|
||||
Reference in New Issue
Block a user