mirror of
https://github.com/inspec/inspec
synced 2024-12-21 02:23:13 +00:00
0b0a0a4d48
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
26 lines
970 B
Ruby
26 lines
970 B
Ruby
|
|
title 'Check Azure Resources'
|
|
|
|
control 'azure-generic-resource-group-resources-1.0' do
|
|
|
|
impact 1.0
|
|
title 'Check that the resource group has the correct resources'
|
|
|
|
# Ensure that the expected resources have been deployed
|
|
describe azure_generic_resource(group_name: 'Inspec-Azure') do
|
|
its('total') { should eq 13 }
|
|
its('Microsoft.Compute/virtualMachines') { should eq 3 }
|
|
its('Microsoft.Network/networkInterfaces') { should eq 3 }
|
|
its('Microsoft.Network/publicIPAddresses') { should eq 1 }
|
|
its('Microsoft.Network/networkSecurityGroups') { should eq 1 }
|
|
its('Microsoft.Storage/storageAccounts') { should eq 1 }
|
|
its('Microsoft.Network/virtualNetworks') { should eq 1 }
|
|
its('Microsoft.Compute/disks') { should eq 3 }
|
|
|
|
# Check the tags
|
|
it { should have_tags }
|
|
its('tag_count') { should be 1 }
|
|
its('tags') { should include 'CreatedBy' }
|
|
its('CreatedBy_tag') { should cmp 'InSpec Azure Integration Tests' }
|
|
end
|
|
end
|