From 8d3b93a2cc9edec3142a8de52a2c5df47d3dd087 Mon Sep 17 00:00:00 2001 From: Tobias Rueetschi Date: Wed, 17 Jun 2020 13:15:42 +0200 Subject: [PATCH] Fix CRLF --- .gitignore | 31 +++++++++-------- output.tf | 98 +++++++++++++++++++++++++++--------------------------- 2 files changed, 64 insertions(+), 65 deletions(-) diff --git a/.gitignore b/.gitignore index 044782d..b80f399 100644 --- a/.gitignore +++ b/.gitignore @@ -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~ diff --git a/output.tf b/output.tf index 98cc631..a9719c1 100644 --- a/output.tf +++ b/output.tf @@ -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 +}