vw_regulatory_compliance_controls
Creates, updates, deletes, gets or lists a vw_regulatory_compliance_controls
resource.
Overview
Name | vw_regulatory_compliance_controls |
Type | View |
Id | azure.security.vw_regulatory_compliance_controls |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.passedAssessments') as "passed_assessments",
JSON_EXTRACT(properties, '$.failedAssessments') as "failed_assessments",
JSON_EXTRACT(properties, '$.skippedAssessments') as "skipped_assessments",
subscriptionId,
regulatoryComplianceStandardName,
regulatoryComplianceControlName
FROM azure.security.regulatory_compliance_controls
WHERE subscriptionId = 'replace-me' AND regulatoryComplianceStandardName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.passedAssessments') as "passed_assessments",
json_extract_path_text(properties, '$.failedAssessments') as "failed_assessments",
json_extract_path_text(properties, '$.skippedAssessments') as "skipped_assessments",
subscriptionId,
regulatoryComplianceStandardName,
regulatoryComplianceControlName
FROM azure.security.regulatory_compliance_controls
WHERE subscriptionId = 'replace-me' AND regulatoryComplianceStandardName = 'replace-me';