Я пытаюсь запустить план terraform с помощью azurerm_function_app. У меня есть этот провайдер:
provider "azuread" {
use_msi = true
}
, и это в моем блоке azurerm_function_app:
identity = {
type = "SystemAssigned"
}
К сожалению, мой план постоянно говорит:
Error: Unsupported argument
on main.tf line 62, in resource "azurerm_app_service_plan" "example":
62: identity = {
An argument named "identity" is not expected here.
Я добавил SystemAssigned имя пользователя на портале, но мой план terraform не обнаруживает его.
Как добавить MSI в azurerm_app_service_plan?