Skip to main content

azure_data_factory_linked_services Resource

[edit on GitHub]

Use the azure_data_factory_linked_services InSpec audit resource to test the properties related to linked services for a resource group or the entire subscription.

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.

Installation

This resource is available in the Chef InSpec Azure resource pack.

See the Chef InSpec documentation on cloud platforms for information on configuring your Azure environment for InSpec and creating an InSpec profile that uses the InSpec Azure resource pack.

Syntax

An azure_data_factory_linked_services resource block returns all Azure Linked Services, either within a Resource Group (if provided), or within an entire Subscription.

describe (resource_group: `RESOURCE_GROUP`, factory_name: 'FACTORY_NAME') do
  #...
end

resource_group and factory_name are required parameters.

Parameters

resource_group
Azure resource group that the targeted resource resides in.
factory_name
Azure factory name for which linked services are retrived.

Properties

names
A list of the unique resource names.

Field: name

ids
A list of Linked Services IDs.

Field: id

properties
A list of properties for the resource.

Field: properties

provisioning_states
The linked services provisioning state.

Field: provisioning_state

linked_service_types
The type of linked service resource.

Field: linked_service_type

type_properties
The linked service type of properties.

Field: type_properties

* For information on how to use filter criteria on plural resources, refer to FilterTable usage.

Examples

Test if any linked services exist in the resource group.

describe azure_data_factory_linked_services(resource_group: `RESOURCE_GROUP`, factory_name: 'FACTORY_NAME') do
  it { should exist }
  its('names') { should include "factory_name" }
end

Test that there aren’t any Linked Services in a resource group.

**Should not exist if no Linked Services are in the resource group.**

describe azure_data_factory_linked_services(resource_group: `RESOURCE_GROUP`, factory_name: 'FACTORY_NAME') do
  it { should_not exist }
end

Filter Linked Services in a resource group by properties.

describe azure_data_factory_linked_services(resource_group: `RESOURCE_GROUP`, factory_name: 'FACTORY_NAME') do
  its('names') { should include linked_service_name1 }
  its('types') { should include 'Microsoft.DataFactory/factories/linkedservices' }
  its('linked_service_types') { should include('MySql') }
end

Azure Permissions

Your Service Principal must be set up with at least a contributor role on the subscription you wish to test.

Was this page helpful?

×









Search Results