Skip to content

Commit

Permalink
Output nfs file share url and nfs vm public IP
Browse files Browse the repository at this point in the history
  • Loading branch information
tush4hworks committed Oct 30, 2023
1 parent 48ae2dd commit 7bfbb19
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions modules/terraform-cdp-azure-pre-reqs/modules/nfs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,14 @@ resource "azurerm_linux_virtual_machine" "nfs_vm" {
sku = "20_04-lts"
version = "latest"
}
}

output "nfs_file_share_url" {
value = azurerm_storage_share.nfs_storage_share.url
description = "NFS File Share url"
}

output "nfs_vm_public_ip" {
value = azurerm_public_ip.nfsvm_public_ip.ip_address
description = "NFS VM public IP address"
}

0 comments on commit 7bfbb19

Please sign in to comment.