mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
d781cdbf63
Closes #11 Signed-off-by: Russell Seymour <russell.seymour@turtlesystems.co.uk>
155 lines
3.6 KiB
Ruby
155 lines
3.6 KiB
Ruby
|
|
require File.expand_path(File.dirname(__FILE__) + '/common/helpers')
|
|
|
|
# Class to retrieve information about the specified virtual machine
|
|
#
|
|
# @author Russell Seymour
|
|
#
|
|
# @attr_reader [Azure::ARM::Compute::Models::VirtualMachine] vm VM object as retrieved from Azure
|
|
class AzureVm < Inspec.resource(1)
|
|
name 'azure_vm'
|
|
|
|
desc "
|
|
This resource gathers information about which image the vm was created from
|
|
"
|
|
|
|
example "
|
|
describe azure_vm(host: 'acme-test-01', resource_group: 'ACME') do
|
|
its('sku') { should eq '16.04.0-LTS'}
|
|
end
|
|
"
|
|
|
|
attr_accessor :vm
|
|
|
|
# Constructor to retrieve the VM from Azure
|
|
#
|
|
# @author Russell Seymour
|
|
#
|
|
# @param [Hash] opts Hashtable of options
|
|
# opts[:host] The name of the host in the resource group. NOTE, this is the name as seen in Azure and not the name of the machine in the Operating System
|
|
# opts[:resource_group] Name of the resource group in which the host will be found
|
|
def initialize(opts)
|
|
opts = opts
|
|
helpers = Helpers.new
|
|
@vm = helpers.get_vm(opts[:host], opts[:resource_group])
|
|
|
|
# Ensure that the vm is an object
|
|
raise format('An error has occured: %s', vm) if vm.instance_of?(String)
|
|
end
|
|
|
|
# Determine the SKU used to create the machine
|
|
#
|
|
# @return [String] Showing the sku, e.g. 16.04.0-LTS
|
|
#
|
|
def sku
|
|
vm.storage_profile.image_reference.sku
|
|
end
|
|
|
|
# Determine the publisher of the SKU
|
|
#
|
|
# @return [String] Publisher, e.g. Canonical
|
|
#
|
|
def publisher
|
|
vm.storage_profile.image_reference.publisher
|
|
end
|
|
|
|
# Determine the offer from the publisher
|
|
#
|
|
# @return [String] offer, e.g. UbuntuServer
|
|
#
|
|
def offer
|
|
vm.storage_profile.image_reference.offer
|
|
end
|
|
|
|
# Determine the size of the machine
|
|
#
|
|
# @return [String] Size of the machine, e.g. Standard_DS1_v2
|
|
#
|
|
def size
|
|
vm.hardware_profile.vm_size
|
|
end
|
|
|
|
# Determine the location of the vm
|
|
#
|
|
# @return [String] location of the machinem, e.g. westeurope
|
|
#
|
|
def location
|
|
vm.location
|
|
end
|
|
|
|
# State if boot diagnostics is enabled
|
|
#
|
|
# @return [Boolean]
|
|
#
|
|
def boot_diagnostics?
|
|
vm.diagnostics_profile.boot_diagnostics.enabled
|
|
end
|
|
|
|
# Determine how many network cards are connected to the machine
|
|
#
|
|
# @return [Integer]
|
|
#
|
|
def nic_count
|
|
vm.network_profile.network_interfaces.length
|
|
end
|
|
|
|
# The admin username for the machine
|
|
#
|
|
# @return [String] Admin username when the machine was created, e.g. azure
|
|
#
|
|
def username
|
|
vm.os_profile.admin_username
|
|
end
|
|
|
|
# The computername as seen by the operating system
|
|
# This might be different to the VM name as seen in Azure
|
|
#
|
|
# @return [String]
|
|
#
|
|
def computername
|
|
vm.os_profile.computer_name
|
|
end
|
|
|
|
# Alias for computername
|
|
#
|
|
# @return [String]
|
|
#
|
|
def hostname
|
|
computername
|
|
end
|
|
|
|
# Determine if password authentication is enabled
|
|
# For Windows this is always True. On Linux this will be determined
|
|
#
|
|
# @return [Boolean]
|
|
#
|
|
def password_authentication?
|
|
# if the vm has a linux configuration then interrogate that, otherwise return true
|
|
if !vm.os_profile.linux_configuration.nil?
|
|
!vm.os_profile.linux_configuration.disable_password_authentication
|
|
else
|
|
true
|
|
end
|
|
end
|
|
|
|
# How many SSH keys have been added to the machine
|
|
# For Windows this will be 0, for Linux this will be determined
|
|
#
|
|
# @return [Integer]
|
|
#
|
|
def ssh_key_count
|
|
if !vm.os_profile.linux_configuration.nil?
|
|
vm.os_profile.linux_configuration.ssh.public_keys.length
|
|
else
|
|
0
|
|
end
|
|
end
|
|
|
|
# Determine the Operating system type using the os_disk object
|
|
#
|
|
# @return [String] OS type, e.g. Windows or Linux
|
|
#
|
|
def os_type
|
|
vm.storage_profile.os_disk.os_type
|
|
end
|
|
end
|