2017-02-09 16:47:46 +00:00
|
|
|
|
|
|
|
require_relative 'common/helpers'
|
|
|
|
|
|
|
|
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
|
|
|
|
"
|
|
|
|
|
|
|
|
# Load the configuration file on initialisation
|
|
|
|
def initialize(opts)
|
|
|
|
@opts = opts
|
2017-02-17 17:25:30 +00:00
|
|
|
@helpers = Helpers.new
|
2017-02-09 16:47:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def sku
|
|
|
|
vm = @helpers.get_vm(@opts[:host], @opts[:resource_group])
|
|
|
|
|
|
|
|
if vm.instance_of?(String)
|
|
|
|
vm
|
|
|
|
else
|
|
|
|
vm.storage_profile.image_reference.sku
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def publisher
|
|
|
|
vm = @helpers.get_vm(@opts[:host], @opts[:resource_group])
|
|
|
|
|
|
|
|
if vm.instance_of?(String)
|
|
|
|
vm
|
|
|
|
else
|
|
|
|
vm.storage_profile.image_reference.publisher
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def offer
|
|
|
|
vm = @helpers.get_vm(@opts[:host], @opts[:resource_group])
|
|
|
|
|
|
|
|
if vm.instance_of?(String)
|
|
|
|
vm
|
|
|
|
else
|
|
|
|
vm.storage_profile.image_reference.offer
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|