我在Azure Data Factory中使用了Terraform来配置Azure git,但是在部署后验证连接后,我得到了一个错误提示。我已经附上了下面的截图。
data "azurerm_client_config" "current" {}
resource "azurerm_resource_group" "example" {
name = "testadfrg"
location = "West Europe"
}
resource "azurerm_data_factory" "df" {
name = "testadfadf"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
public_network_enabled = "true"
vsts_configuration {
account_name = "organizationaz440"
branch_name = "Development"
project_name = "TestProject"
repository_name = "DataOps"
root_folder = "/ADF"
tenant_id = data.azurerm_client_config.current.tenant_id
}
}

发布于 2021-09-24 06:18:59
你尝试打开ADF studio来验证更改的用户帐户似乎没有访问Git Repo的权限。请与Git repo管理员一起处理错误详细信息。他们应该能够给你相关的权限。
https://stackoverflow.com/questions/69242609
复制相似问题