-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
33 lines (28 loc) · 787 Bytes
/
outputs.tf
File metadata and controls
33 lines (28 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
output "public_ip" {
description = "Public elastic IP address of the DSF base instance"
value = local.public_ip
depends_on = [
azurerm_network_interface_security_group_association.nic_sg_association,
azurerm_role_assignment.vm_identity_role_assignment
]
}
output "private_ip" {
description = "Private IP address of the DSF base instance"
value = local.private_ip
depends_on = [
azurerm_network_interface_security_group_association.nic_sg_association,
azurerm_role_assignment.vm_identity_role_assignment
]
}
output "archiver_user" {
value = var.archiver_user
}
output "archiver_password" {
value = var.archiver_password
}
output "incoming_folder_path" {
value = local.incoming_folder_path
}
output "ssh_user" {
value = "cbadmin"
}