Microsoft.Security securityContacts

Bicep 리소스 정의

securityContacts 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Security/securityContacts 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.

resource symbolicname 'Microsoft.Security/securityContacts@2020-01-01-preview' = {
  name: 'string'
  properties: {
    alertNotifications: {
      minimalSeverity: 'string'
      state: 'string'
    }
    emails: 'string'
    notificationsByRole: {
      roles: [
        'string'
      ]
      state: 'string'
    }
    phone: 'string'
  }
}

속성 값

securityContacts

Name Description
name 리소스 이름 string(필수)

문자 제한: 1-260

유효한 문자:
영숫자, 밑줄 및 하이픈
properties 보안 연락처 데이터 SecurityContactProperties

SecurityContactProperties

Name Description
alertNotifications 새 보안 경고에 대한 메일 알림 보낼지 여부를 정의합니다. SecurityContactPropertiesAlertNotifications
emails 이 보안 연락처에 정의된 구성을 통해 클라우드용 Microsoft Defender 알림을 받을 이메일 주소 목록입니다. 문자열
notificationsByRole 클라우드용 Microsoft Defender 구독에 특정 RBAC 역할이 있는 사용자에게 메일 알림 보낼지 여부를 정의합니다. SecurityContactPropertiesNotificationsByRole
phone 보안 연락처의 전화 번호 문자열

SecurityContactPropertiesAlertNotifications

Name Description
minimalSeverity 메일 알림 전송될 최소 경고 심각도를 정의합니다. 'High'
'낮음'
'Medium'
state 새 보안 경고에 대해 메일 알림 전송되는지를 정의합니다. 'Off'
'On'

SecurityContactPropertiesNotificationsByRole

Name Description
역할 클라우드용 Microsoft Defender 메일 알림 가져올 RBAC 역할을 정의합니다. 허용되는 RBAC 역할 목록: 다음 중 어느 것을 포함하는 문자열 배열:
'AccountAdmin'
'기여자'
'Owner'
'ServiceAdmin'
state AMicrosoft Defender for Cloud에서 구독에 특정 RBAC 역할이 있는 사용자에게 메일 알림 보낼지 여부를 정의합니다. 'Off'
'On'

ARM 템플릿 리소스 정의

securityContacts 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Security/securityContacts 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.

{
  "type": "Microsoft.Security/securityContacts",
  "apiVersion": "2020-01-01-preview",
  "name": "string",
  "properties": {
    "alertNotifications": {
      "minimalSeverity": "string",
      "state": "string"
    },
    "emails": "string",
    "notificationsByRole": {
      "roles": [ "string" ],
      "state": "string"
    },
    "phone": "string"
  }
}

속성 값

securityContacts

Name Description
형식 리소스 종류 'Microsoft.Security/securityContacts'
apiVersion 리소스 api 버전 '2020-01-01-preview'
name 리소스 이름 string(필수)

문자 제한: 1-260

유효한 문자:
영숫자, 밑줄 및 하이픈
properties 보안 연락처 데이터 SecurityContactProperties

SecurityContactProperties

Name Description
alertNotifications 새 보안 경고에 대한 메일 알림 보낼지 여부를 정의합니다. SecurityContactPropertiesAlertNotifications
emails 이 보안 연락처에 정의된 구성을 통해 클라우드용 Microsoft Defender 알림을 받을 이메일 주소 목록입니다. string
notificationsByRole 메일 알림 Microsoft Defender 구독의 특정 RBAC 역할이 있는 사용자에게 보낼지 여부를 정의합니다. SecurityContactPropertiesNotificationsByRole
phone 보안 연락처의 전화 번호 문자열

SecurityContactPropertiesAlertNotifications

Name Description
minimalSeverity 메일 알림 전송될 최소 경고 심각도를 정의합니다. 'High'
'낮음'
'보통'
state 새 보안 경고에 대한 메일 알림 전송되는지를 정의합니다. '끄기'
'On'

SecurityContactPropertiesNotificationsByRole

Name Description
역할 클라우드용 Microsoft Defender 메일 알림 가져올 RBAC 역할을 정의합니다. 허용되는 RBAC 역할 목록: 다음 중 어느 것을 포함하는 문자열 배열:
'AccountAdmin'
'기여자'
'소유자'
'ServiceAdmin'
state AMicrosoft Defender for Cloud에서 구독의 특정 RBAC 역할이 있는 사용자에게 메일 알림 보낼지 여부를 정의합니다. '끄기'
'On'

Terraform(AzAPI 공급자) 리소스 정의

securityContacts 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

  • 구독

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.Security/securityContacts 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Security/securityContacts@2020-01-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      alertNotifications = {
        minimalSeverity = "string"
        state = "string"
      }
      emails = "string"
      notificationsByRole = {
        roles = [
          "string"
        ]
        state = "string"
      }
      phone = "string"
    }
  })
}

속성 값

securityContacts

Name Description
형식 리소스 종류 "Microsoft.Security/securityContacts@2020-01-01-preview"
name 리소스 이름 string(필수)

문자 제한: 1-260

유효한 문자:
영숫자, 밑줄 및 하이픈
parent_id 구독에 배포하려면 해당 구독의 ID를 사용합니다. string(필수)
properties 보안 연락처 데이터 SecurityContactProperties

SecurityContactProperties

Name Description
alertNotifications 새 보안 경고에 대한 메일 알림 보낼지 여부를 정의합니다. SecurityContactPropertiesAlertNotifications
emails 이 보안 연락처에 정의된 구성을 통해 클라우드용 Microsoft Defender 알림을 받을 이메일 주소 목록입니다. 문자열
notificationsByRole 메일 알림 Microsoft Defender 구독의 특정 RBAC 역할이 있는 사용자에게 보낼지 여부를 정의합니다. SecurityContactPropertiesNotificationsByRole
phone 보안 연락처의 전화 번호 문자열

SecurityContactPropertiesAlertNotifications

Name Description
minimalSeverity 메일 알림 전송될 최소 경고 심각도를 정의합니다. "High"
"Low"
"보통"
state 새 보안 경고에 대한 메일 알림 전송되는지를 정의합니다. "Off"
"On"

SecurityContactPropertiesNotificationsByRole

Name Description
역할 클라우드용 Microsoft Defender 메일 알림 가져올 RBAC 역할을 정의합니다. 허용되는 RBAC 역할 목록: 다음 중 어느 것을 포함하는 문자열 배열:
"AccountAdmin"
"기여자"
"소유자"
"ServiceAdmin"
state AMicrosoft Defender for Cloud에서 구독에 특정 RBAC 역할이 있는 사용자에게 메일 알림 보낼지 여부를 정의합니다. "Off"
"On"