Skip to content

Commit 155295e

Browse files
Merge pull request #26 from keachi/crlf
Fix CRLF
2 parents aa5336a + 8d3b93a commit 155295e

File tree

2 files changed

+64
-65
lines changed

2 files changed

+64
-65
lines changed

.gitignore

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
# Local .terraform directories
2-
**/.terraform/*
3-
4-
# .tfstate files
5-
*.tfstate
6-
*.tfstate.*
7-
8-
# .tfvars files
9-
*.tfvars
10-
11-
#Sensetive Info
12-
*private*
13-
14-
#VIM Junk
15-
*.un~
16-
1+
# Local .terraform directories
2+
**/.terraform/*
3+
4+
# .tfstate files
5+
*.tfstate
6+
*.tfstate.*
7+
8+
# .tfvars files
9+
*.tfvars
10+
11+
#Sensetive Info
12+
*private*
13+
14+
#VIM Junk
15+
*.un~

output.tf

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
1-
output "DC_ID" {
2-
description = "id of vSphere Datacenter"
3-
value = data.vsphere_datacenter.dc.id
4-
}
5-
output "ResPool_ID" {
6-
description = "Resource Pool id"
7-
value = data.vsphere_resource_pool.pool.id
8-
}
9-
10-
output "Windows-VM" {
11-
description = "VM Names"
12-
value = vsphere_virtual_machine.Windows.*.name
13-
}
14-
15-
output "Windows-ip" {
16-
description = "default ip address of the deployed VM"
17-
value = vsphere_virtual_machine.Windows.*.default_ip_address
18-
}
19-
20-
output "Windows-guest-ip" {
21-
description = "all the registered ip address of the VM"
22-
value = vsphere_virtual_machine.Windows.*.guest_ip_addresses
23-
}
24-
25-
output "Windows-uuid" {
26-
description = "UUID of the VM in vSphere"
27-
value = vsphere_virtual_machine.Windows.*.uuid
28-
}
29-
30-
output "Linux-VM" {
31-
description = "VM Names"
32-
value = vsphere_virtual_machine.Linux.*.name
33-
}
34-
35-
output "Linux-ip" {
36-
description = "default ip address of the deployed VM"
37-
value = vsphere_virtual_machine.Linux.*.default_ip_address
38-
}
39-
40-
output "Linux-guest-ip" {
41-
description = "all the registered ip address of the VM"
42-
value = vsphere_virtual_machine.Linux.*.guest_ip_addresses
43-
}
44-
45-
output "Linux-uuid" {
46-
description = "UUID of the VM in vSphere"
47-
value = vsphere_virtual_machine.Linux.*.uuid
48-
}
49-
1+
output "DC_ID" {
2+
description = "id of vSphere Datacenter"
3+
value = data.vsphere_datacenter.dc.id
4+
}
5+
6+
output "ResPool_ID" {
7+
description = "Resource Pool id"
8+
value = data.vsphere_resource_pool.pool.id
9+
}
10+
11+
output "Windows-VM" {
12+
description = "VM Names"
13+
value = vsphere_virtual_machine.Windows.*.name
14+
}
15+
16+
output "Windows-ip" {
17+
description = "default ip address of the deployed VM"
18+
value = vsphere_virtual_machine.Windows.*.default_ip_address
19+
}
20+
21+
output "Windows-guest-ip" {
22+
description = "all the registered ip address of the VM"
23+
value = vsphere_virtual_machine.Windows.*.guest_ip_addresses
24+
}
25+
26+
output "Windows-uuid" {
27+
description = "UUID of the VM in vSphere"
28+
value = vsphere_virtual_machine.Windows.*.uuid
29+
}
30+
31+
output "Linux-VM" {
32+
description = "VM Names"
33+
value = vsphere_virtual_machine.Linux.*.name
34+
}
35+
36+
output "Linux-ip" {
37+
description = "default ip address of the deployed VM"
38+
value = vsphere_virtual_machine.Linux.*.default_ip_address
39+
}
40+
41+
output "Linux-guest-ip" {
42+
description = "all the registered ip address of the VM"
43+
value = vsphere_virtual_machine.Linux.*.guest_ip_addresses
44+
}
45+
46+
output "Linux-uuid" {
47+
description = "UUID of the VM in vSphere"
48+
value = vsphere_virtual_machine.Linux.*.uuid
49+
}

0 commit comments

Comments
 (0)