Skip to content

Commit

Permalink
Merge pull request #26 from keachi/crlf
Browse files Browse the repository at this point in the history
Fix CRLF
  • Loading branch information
Arman-Keyoumarsi authored Jun 23, 2020
2 parents aa5336a + 8d3b93a commit 155295e
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 65 deletions.
31 changes: 15 additions & 16 deletions .gitignore
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~
98 changes: 49 additions & 49 deletions output.tf
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
}

0 comments on commit 155295e

Please sign in to comment.