-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from keachi/crlf
Fix CRLF
- Loading branch information
Showing
2 changed files
with
64 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# Local .terraform directories | ||
**/.terraform/* | ||
|
||
# .tfstate files | ||
*.tfstate | ||
*.tfstate.* | ||
|
||
# .tfvars files | ||
*.tfvars | ||
|
||
#Sensetive Info | ||
*private* | ||
|
||
#VIM Junk | ||
*.un~ | ||
|
||
# Local .terraform directories | ||
**/.terraform/* | ||
|
||
# .tfstate files | ||
*.tfstate | ||
*.tfstate.* | ||
|
||
# .tfvars files | ||
*.tfvars | ||
|
||
#Sensetive Info | ||
*private* | ||
|
||
#VIM Junk | ||
*.un~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,49 @@ | ||
output "DC_ID" { | ||
description = "id of vSphere Datacenter" | ||
value = data.vsphere_datacenter.dc.id | ||
} | ||
output "ResPool_ID" { | ||
description = "Resource Pool id" | ||
value = data.vsphere_resource_pool.pool.id | ||
} | ||
|
||
output "Windows-VM" { | ||
description = "VM Names" | ||
value = vsphere_virtual_machine.Windows.*.name | ||
} | ||
|
||
output "Windows-ip" { | ||
description = "default ip address of the deployed VM" | ||
value = vsphere_virtual_machine.Windows.*.default_ip_address | ||
} | ||
|
||
output "Windows-guest-ip" { | ||
description = "all the registered ip address of the VM" | ||
value = vsphere_virtual_machine.Windows.*.guest_ip_addresses | ||
} | ||
|
||
output "Windows-uuid" { | ||
description = "UUID of the VM in vSphere" | ||
value = vsphere_virtual_machine.Windows.*.uuid | ||
} | ||
|
||
output "Linux-VM" { | ||
description = "VM Names" | ||
value = vsphere_virtual_machine.Linux.*.name | ||
} | ||
|
||
output "Linux-ip" { | ||
description = "default ip address of the deployed VM" | ||
value = vsphere_virtual_machine.Linux.*.default_ip_address | ||
} | ||
|
||
output "Linux-guest-ip" { | ||
description = "all the registered ip address of the VM" | ||
value = vsphere_virtual_machine.Linux.*.guest_ip_addresses | ||
} | ||
|
||
output "Linux-uuid" { | ||
description = "UUID of the VM in vSphere" | ||
value = vsphere_virtual_machine.Linux.*.uuid | ||
} | ||
|
||
output "DC_ID" { | ||
description = "id of vSphere Datacenter" | ||
value = data.vsphere_datacenter.dc.id | ||
} | ||
|
||
output "ResPool_ID" { | ||
description = "Resource Pool id" | ||
value = data.vsphere_resource_pool.pool.id | ||
} | ||
|
||
output "Windows-VM" { | ||
description = "VM Names" | ||
value = vsphere_virtual_machine.Windows.*.name | ||
} | ||
|
||
output "Windows-ip" { | ||
description = "default ip address of the deployed VM" | ||
value = vsphere_virtual_machine.Windows.*.default_ip_address | ||
} | ||
|
||
output "Windows-guest-ip" { | ||
description = "all the registered ip address of the VM" | ||
value = vsphere_virtual_machine.Windows.*.guest_ip_addresses | ||
} | ||
|
||
output "Windows-uuid" { | ||
description = "UUID of the VM in vSphere" | ||
value = vsphere_virtual_machine.Windows.*.uuid | ||
} | ||
|
||
output "Linux-VM" { | ||
description = "VM Names" | ||
value = vsphere_virtual_machine.Linux.*.name | ||
} | ||
|
||
output "Linux-ip" { | ||
description = "default ip address of the deployed VM" | ||
value = vsphere_virtual_machine.Linux.*.default_ip_address | ||
} | ||
|
||
output "Linux-guest-ip" { | ||
description = "all the registered ip address of the VM" | ||
value = vsphere_virtual_machine.Linux.*.guest_ip_addresses | ||
} | ||
|
||
output "Linux-uuid" { | ||
description = "UUID of the VM in vSphere" | ||
value = vsphere_virtual_machine.Linux.*.uuid | ||
} |