다음을 통해 공유


Microsoft.Security securityContacts 2020-01-01-preview

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'
  }
}

속성 값

Microsoft.Security/securityContacts

이름 묘사
이름 리소스 이름 string(필수)
속성 보안 연락처 데이터 securityContactProperties

SecurityContactProperties

이름 묘사
alertNotifications 새 보안 경고에 대한 이메일 알림을 보낼지 여부를 정의합니다. SecurityContactPropertiesAlertNotifications
전자 메일 이 보안 연락처에 정의된 구성으로 클라우드용 Microsoft Defender에서 알림을 받을 전자 메일 주소 목록입니다. 문자열
notificationsByRole Microsoft Defender for Cloud에서 구독의 특정 RBAC 역할을 가진 사람에게 전자 메일 알림을 보낼지 여부를 정의합니다. SecurityContactPropertiesNotificationsByRole
전화 보안 연락처의 전화 번호 문자열

SecurityContactPropertiesAlertNotifications

이름 묘사
minimalSeverity 이메일 알림으로 전송될 최소 경고 심각도를 정의합니다. '높음'
'낮음'
'Medium'
상태 새 보안 경고에 대한 이메일 알림을 보낼지 정의합니다. 'Off'
'On'

SecurityContactPropertiesNotificationsByRole

이름 묘사
역할 클라우드용 Microsoft Defender에서 전자 메일 알림을 받을 RBAC 역할을 정의합니다. 허용되는 RBAC 역할 목록: 다음 중 어느 것을 포함하는 문자열 배열:
'AccountAdmin'
'기여자'
'소유자'
'ServiceAdmin'
상태 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"
  }
}

속성 값

Microsoft.Security/securityContacts

이름 묘사
apiVersion api 버전 '2020-01-01-preview'
이름 리소스 이름 string(필수)
속성 보안 연락처 데이터 securityContactProperties
리소스 종류 'Microsoft.Security/securityContacts'

SecurityContactProperties

이름 묘사
alertNotifications 새 보안 경고에 대한 이메일 알림을 보낼지 여부를 정의합니다. SecurityContactPropertiesAlertNotifications
전자 메일 이 보안 연락처에 정의된 구성으로 클라우드용 Microsoft Defender에서 알림을 받을 전자 메일 주소 목록입니다. 문자열
notificationsByRole Microsoft Defender for Cloud에서 구독의 특정 RBAC 역할을 가진 사람에게 전자 메일 알림을 보낼지 여부를 정의합니다. SecurityContactPropertiesNotificationsByRole
전화 보안 연락처의 전화 번호 문자열

SecurityContactPropertiesAlertNotifications

이름 묘사
minimalSeverity 이메일 알림으로 전송될 최소 경고 심각도를 정의합니다. '높음'
'낮음'
'Medium'
상태 새 보안 경고에 대한 이메일 알림을 보낼지 정의합니다. 'Off'
'On'

SecurityContactPropertiesNotificationsByRole

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

사용 예제

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

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

  • 구독

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

리소스 형식

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

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

속성 값

Microsoft.Security/securityContacts

이름 묘사
이름 리소스 이름 string(필수)
속성 보안 연락처 데이터 securityContactProperties
리소스 종류 "Microsoft.Security/securityContacts@2020-01-01-preview"

SecurityContactProperties

이름 묘사
alertNotifications 새 보안 경고에 대한 이메일 알림을 보낼지 여부를 정의합니다. SecurityContactPropertiesAlertNotifications
전자 메일 이 보안 연락처에 정의된 구성으로 클라우드용 Microsoft Defender에서 알림을 받을 전자 메일 주소 목록입니다. 문자열
notificationsByRole Microsoft Defender for Cloud에서 구독의 특정 RBAC 역할을 가진 사람에게 전자 메일 알림을 보낼지 여부를 정의합니다. SecurityContactPropertiesNotificationsByRole
전화 보안 연락처의 전화 번호 문자열

SecurityContactPropertiesAlertNotifications

이름 묘사
minimalSeverity 이메일 알림으로 전송될 최소 경고 심각도를 정의합니다. '높음'
'낮음'
'Medium'
상태 새 보안 경고에 대한 이메일 알림을 보낼지 정의합니다. 'Off'
'On'

SecurityContactPropertiesNotificationsByRole

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