azure_migrate_project_solution resource
Use the azure_migrate_project_solution
InSpec audit resource to test the properties related to an Azure Migrate Project solution.
Azure REST API version, endpoint, and HTTP client parameters
This resource interacts with API versions supported by the resource provider.
You can specify the api_version
as a resource parameter to use a specific version of the Azure REST API.
If you don’t specify an API version, this resource uses the latest version available.
For more information about API versioning, see the azure_generic_resource
.
By default, this resource uses the azure_cloud
global endpoint and default HTTP client settings.
You can override these settings if you need to connect to a different Azure environment (such as Azure Government or Azure China).
For more information about configuration options, see the resource pack README.
Syntax
name
and resource_group
are required parameters.
describe azure_migrate_project_solution(resource_group: 'RESOURCE_GROUP', project_name: 'PROJECT_NAME', name: 'PROJECT_SOLUTION_NAME') do
it { should exist }
its('name') { should cmp 'PROJECT_SOLUTION_NAME' }
its('type') { should cmp 'Microsoft.Migrate/MigrateProjects/Solutions' }
end
describe azure_migrate_project_solution(resource_group: 'RESOURCE_GROUP', project_name: 'PROJECT_NAME', name: 'PROJECT_SOLUTION_NAME') do
it { should exist }
end
Parameters
name
- Name of the Azure Migrate project solution to test.
resource_group
- Azure resource group where the targeted resource resides.
project_name
- Azure Migrate project.
The parameter set should be provided for a valid query isresource_group
, project_name
, and name
.
Properties
id
- Path reference to the project solution.
name
- Unique name of the project solution.
type
- Object type.
Microsoft.Migrate/MigrateProjects/Solutions
. eTag
- For optimistic concurrency control.
properties
- Properties of the project Solution.
properties.cleanupState
- The cleanup state of the solution.
properties.details
- The details of the solution.
properties.summary
- The summary of the solution.
properties.purpose
- The purpose of the solution.
For properties applicable to all resources, such as type
, name
, id
, and properties
, refer to azure_generic_resource
.
Also, see the Azure documentation for other available properties. Any attribute in the response is accessed with the key names separated by dots (.
).
Examples
Test that the Migrate Project solution is defined for assessment:
describe azure_migrate_project_solution(resource_group: 'RESOURCE_GROUP', project_name: 'PROJECT_NAME', name: 'PROJECT_SOLUTION_NAME') do
its('properties.purpose') { should eq 'ASSESSMENT' }
end
Matchers
For a full list of available matchers, see our Universal Matchers page.exists
# If a Migrate Project solution is found, it will exist.
describe azure_migrate_project_solution(resource_group: 'RESOURCE_GROUP', project_name: 'PROJECT_NAME', name: 'PROJECT_SOLUTION_NAME') do
it { should exist }
end
not_exists
# If Migrate Project solutions are not found, it will not exist.
describe azure_migrate_project_solution(resource_group: 'RESOURCE_GROUP', project_name: 'PROJECT_NAME', name: 'PROJECT_SOLUTION_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.