- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在使用 terraform 的存储帐户上使用“Microsoft Defender for Storage”启用恶意软件扫描,但我不知道如何执行此操作。 Terraform 不支持吗?我正在尝试在“Microsoft Defender For Cloud”上启用“上传恶意软件扫描”选项。是否有其他方法可以以编程方式执行此操作(如果 Terraform 尚未支持)?
最佳答案
这就是我使用 ARM 模板解决它的方法。在资源定义中,“template_body”引用模板主体文件“malware-scan-configuration.json”
resource "azurerm_template_deployment" "malware" {
name = "${module.app_service.default_site_hostname}.Scan"
resource_group_name = module.resource_group.name
template_body = file("templates/malware-scan-configuration.json")
parameters = {
storage_account_name = my_storage_storage_account_name
subscription_id = my_subscription_id
resource_group = my_resource_group_name
event_grid_topicName = my_event_grid_topic_name
cap_gb_per_month = 5000
}
deployment_mode = "Incremental"
depends_on = [
]
}
模板正文文件:malware-scan-configuration.json
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"storage_account_name": {
"type": "string"
},
"subscription_id": {
"type": "string"
},
"resource_group": {
"type": "string"
},
"event_grid_topicName": {
"type": "string"
},
"cap_gb_per_month": {
"type": "int"
}
},
"resources": [
{
"type": "Microsoft.Security/DefenderForStorageSettings",
"apiVersion": "2022-12-01-preview",
"name": "current",
"properties": {
"isEnabled": true,
"malwareScanning": {
"onUpload": {
"isEnabled": true,
"capGBPerMonth": "[parameters('cap_gb_per_month')]"
},
"scanResultsEventGridTopicResourceId": "[concat('/subscriptions/', parameters('subscription_id'), '/resourceGroups/', parameters('resource_group'), '/providers/Microsoft.EventGrid/topics/', parameters('event_grid_topicName'))]"
},
"sensitiveDataDiscovery": {
"isEnabled": false
},
"overrideSubscriptionLevelSettings": true
},
"scope": "[resourceId('Microsoft.Storage/storageAccounts', parameters('storage_account_name'))]"
}
],
"outputs": {}
}
关于azure - 使用 Terraform 在存储帐户上启用 Microsoft Defender for Storage 扫描恶意软件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76867155/
我在从排除项中删除以下文件夹时遇到问题,因为由于这些排除项,我的 CPU 使用率达到 90%,而且我不知道它们何时以及为何出现在我的列表中。我昨天更新了 Windows,我的 CPU 开始变热...我
我在从排除项中删除以下文件夹时遇到问题,因为由于这些排除项,我的 CPU 使用率达到 90%,而且我不知道它们何时以及为何出现在我的列表中。我昨天更新了 Windows,我的 CPU 开始变热...我
我出于研究目的检查了不同的键盘记录器并偶然发现了 Refog: https://www.refog.com/keylogger/ 这个程序可以捕获很多系统事件,但真正引起我注意的是别的东西。程序创建了
我最近获得了适用于 Windows 的 l0pht-CD,并在我的 PC 上试用了它,它工作正常!! 2600hertz.wordpress.com/2009/12/22/100-windows-xp
在我将 PyCharm IDE 从 19.1.2 更新到 19.2.0 之后。我收到以下警告: "Windows Defender might be impacting your build perf
这个问题已经有答案了: How to avoid the "Windows Defender SmartScreen prevented an unrecognized app from starti
您好,我不知道,但 Windows Defender 正在标记我的程序,但代码中没有任何内容应该设置它。有办法阻止这个吗?难道这就是乌龟,因为它正在做屏风吗?还是因为随机数? import time
Win7系统自带杀毒软件windows defender,由于大家已习惯使用全家桶系列,所以这个功能有点鸡肋。如果不关闭还会出现冲突情况,这就需要将其关闭,那么要如何关闭windows defend
我正在努力帮助 SuperCollider community尝试了解我们如何防止 Windows Defender 在最新的 Windows 10 上延迟执行其中一个可执行文件。 original
我正在使用 Visual Studio 2019 编译 C++ 代码。代码范围从简单的项目到学习 C++ 功能再到游戏开发。但无论项目的范围如何,我都会收到此消息: Security Scan Req
我将 sendgrid 设置为使用 web api(而不是 smtp 中继)来发送电子邮件。 我按照 C# 如何发送电子邮件的说明进行操作,包括创建 api key 环境变量和安装 nuget 包 s
我正在尝试修复 Azure Kubernetes 集群的这个高严重性错误 我尝试使用 Azure 门户,但它持续旋转数小时且无法修复。 我还尝试了以下 Az 命令 - az aks update --
阅读Windows Defender API的文档,例如MpManagerOpen功能: https://msdn.microsoft.com/en-us/library/windows/deskto
Windows Defender 磁盘扫描会占用系统的大量性能。有没有办法让 C# 应用程序查明磁盘扫描当前是否正在运行? 最佳答案 您可以检查 MsMpEng.exe(反恶意软件服务可执行文件)当前
我在 Windows Defender 中排除了以下文件夹,但“反恶意软件服务可执行文件”仍在使用大量 CPU。 C:\Program Files\Android\Android Studio C:\
我了解代码签名。 但是当我尝试下载一些应用程序时,它甚至没有代码签名。 并且在没有Windows Defender蓝屏的情况下仍然可以打开。 示例:http://www.eainstall.com/d
语境 我已经设置了 trivial Electron app它显示了一个普通的 html 文件,并且始终需要两秒钟以上的时间才能启动。关键性能测量是: 170 毫秒:屏幕上出现一个空白窗口 2800
我有一堆机器正在受到自适应应用程序安全控件的监控,这些控件会发出警告,因为训练过程运行的时间不够长,无法识别良性可执行文件。将事件警报中的可执行文件的异常(exception)添加到自适应安全组的简单
jQuery Defender 在 IE9 中不起作用。怎么了? var promise_url_1 = $.get('http://test.loc/1.html'); var promise_u
这个问题在这里已经有了答案: When to use: Java 8+ interface default method, vs. abstract method (16 个答案) 关闭 7 年前。
我是一名优秀的程序员,十分优秀!