Microsoft.Security sqlVulnerabilityAssessments/baselineRules

Bicep resource definition

The sqlVulnerabilityAssessments/baselineRules resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Security/sqlVulnerabilityAssessments/baselineRules resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Security/sqlVulnerabilityAssessments/baselineRules@2020-07-01-preview' = {
  name: 'string'
  parent: resourceSymbolicName
  latestScan: bool
  results: [
    [
      'string'
    ]
  ]
}

Property values

sqlVulnerabilityAssessments/baselineRules

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, underscores, and hyphens.
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: sqlVulnerabilityAssessments
latestScan Take results from latest scan. bool
results Expected results to be inserted into the baseline.
Leave this field empty it LatestScan == true.
string[][]

ARM template resource definition

The sqlVulnerabilityAssessments/baselineRules resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Security/sqlVulnerabilityAssessments/baselineRules resource, add the following JSON to your template.

{
  "type": "Microsoft.Security/sqlVulnerabilityAssessments/baselineRules",
  "apiVersion": "2020-07-01-preview",
  "name": "string",
  "latestScan": "bool",
  "results": [ [ "string" ] ]
}

Property values

sqlVulnerabilityAssessments/baselineRules

Name Description Value
type The resource type 'Microsoft.Security/sqlVulnerabilityAssessments/baselineRules'
apiVersion The resource api version '2020-07-01-preview'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, underscores, and hyphens.
latestScan Take results from latest scan. bool
results Expected results to be inserted into the baseline.
Leave this field empty it LatestScan == true.
string[][]

Terraform (AzAPI provider) resource definition

The sqlVulnerabilityAssessments/baselineRules resource type can be deployed to:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Security/sqlVulnerabilityAssessments/baselineRules resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Security/sqlVulnerabilityAssessments/baselineRules@2020-07-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    latestScan = bool
    results = [
      [
        "string"
      ]
    ]
  })
}

Property values

sqlVulnerabilityAssessments/baselineRules

Name Description Value
type The resource type "Microsoft.Security/sqlVulnerabilityAssessments/baselineRules@2020-07-01-preview"
name The resource name string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, underscores, and hyphens.
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: sqlVulnerabilityAssessments
latestScan Take results from latest scan. bool
results Expected results to be inserted into the baseline.
Leave this field empty it LatestScan == true.
string[][]