azure_data_factory_datasets Resource
Use the azure_data_factory_datasets
InSpec audit resource to test the properties of multiple Azure Data Factory datasets for a resource group or the entire subscription.
See the Azure Data Factories Dataset documentation
for additional information.
Azure REST API Version, Endpoint, and HTTP Client Parameters
This resource interacts with API versions supported by the resource provider.
The api_version
can be defined as a resource parameter.
If not provided, this resource uses the latest version.
For more information, refer to the azure_generic_resource
document.
Unless defined, this resource uses the azure_cloud
global endpoint and default values for the HTTP client.
For more information, refer to the resource pack README.
Install
This resource is available in the Chef InSpec Azure resource pack.
For information on configuring your Azure environment for Chef InSpec and creating an InSpec profile that uses the InSpec Azure resource pack, see the Chef InSpec documentation for the Azure cloud platform.
Syntax
An azure_data_factory_datasets
resource block returns all Azure datasets, either within a resource group (if provided) or within an entire Subscription.
describe azure_data_factory_datasets(resource_group: 'RESOURCE_GROUP', factory_name: 'FACTORY_NAME') do
#...
end
Parameters
resource_group
(required)- Azure resource group where the targeted resource resides.
factory_name
(required)- The Azure Data factory name.
Properties
names
- A list of the unique resource names.
Field:
name
ids
- A list of dataset IDs.
Field:
id
properties
- A list of properties for the resources.
Field:
properties
types
- A list of types for each resource.
Field:
type
descriptions
- A list of descriptions of the resources.
Field:
description
linkedServiceName_referenceNames
- The list of LinkedService names.
Field:
linkedServiceName_referenceName
linkedServiceName_types
- The list of LinkedService types.
Field:
linkedServiceName_type
Note
Examples
Test if properties match
describe azure_data_factory_datasetsazure_data_factory_datasets(resource_group: 'RESOURCE_GROUP', factory_name: 'FACTORY_NAME') do
its('names') { should include 'DATASET_NAME' }
its('types') { should include 'Microsoft.SecurityInsights/alertRules' }
its('enableds') { should include true }
end
Matchers
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
Test if any Dataset exists in the Data Factory
describe azure_data_factory_datasetsazure_data_factory_datasets(resource_group: 'RESOURCE_GROUP', factory_name: 'FACTORY_NAME') do
it { should exist }
end
Test that there are not any Datasets in a Data Factory
# Should not exist if no datasets are in the data factory.
describe azure_data_factory_datasetsazure_data_factory_datasets(resource_group: 'RESOURCE_GROUP', factory_name: 'FACTORY_NAME') do
it { should_not exist }
end
Azure Permissions
Your Service Principal must be set up with at least a contributor
role on the subscription you wish to test.