- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道为什么它会挂起
azurerm_app_configuration_key.ai_connection_string: Still creating... [27m21s elapsed]
我认为这与依赖关系有关,但我不确定。地形新手。有什么想法吗?
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.65.0"
}
}
}
provider "azurerm" {
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
features {}
}
# Resource Group
resource "azurerm_resource_group" "rg" {
name = "${var.name_prefix}-terraform-rg"
location = var.location
}
# Application Insights
resource "azurerm_application_insights" "ai" {
name = "${var.name_prefix}-gridbotapi-ai"
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name
application_type = "web"
}
output "instrumentation_key" {
value = azurerm_application_insights.ai.instrumentation_key
sensitive = true
}
output "app_id" {
value = azurerm_application_insights.ai.app_id
}
# Key Vault
data "azurerm_client_config" "current" {}
resource "azurerm_key_vault" "kv" {
name = "${var.name_prefix}-kv"
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name
enabled_for_disk_encryption = true
tenant_id = data.azurerm_client_config.current.tenant_id
soft_delete_retention_days = 7
purge_protection_enabled = true
sku_name = "standard"
access_policy {
tenant_id = data.azurerm_client_config.current.tenant_id
object_id = data.azurerm_client_config.current.object_id
key_permissions = ["Get", "Create", "Delete", "List", "Restore", "Recover", "UnwrapKey", "WrapKey", "Purge", "Encrypt", "Decrypt", "Sign", "Verify", "GetRotationPolicy"]
secret_permissions = ["Get", "Set"]
}
}
output "tenant_id" {
value = data.azurerm_client_config.current.tenant_id
}
output "object_id" {
value = data.azurerm_client_config.current.object_id
}
resource "azurerm_key_vault_secret" "ai_connection_string" {
name = "ApplicationInsightsConnectionString"
value = "InstrumentationKey=${azurerm_application_insights.ai.instrumentation_key};IngestionEndpoint=https://westeurope-4.in.applicationinsights.azure.com/;LiveEndpoint=https://westeurope.livediagnostics.monitor.azure.com/"
key_vault_id = azurerm_key_vault.kv.id
}
# Azure App Configuration
resource "azurerm_app_configuration" "appconfiguration" {
name = "${var.name_prefix}-appconfiguration"
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name
sku = "standard"
}
resource "azurerm_app_configuration_key" "ai_connection_string" {
configuration_store_id = azurerm_app_configuration.appconfiguration.id
key = "ApplicationInsights:ConnectionString"
value = "@Microsoft.KeyVault(SecretUri=${azurerm_key_vault_secret.ai_connection_string.id})"
}
waiting for App Configuration Key "ApplicationInsights:ConnectionString" read permission to be propagated: timeout while waiting for state to become 'Error, Exists, NotFound' (last state: 'Forbidden',│ timeout: 1m58.1932854s)
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.65.0"
}
}
}
provider "azurerm" {
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
features {}
}
# Resource Group
resource "azurerm_resource_group" "rg" {
name = "${var.name_prefix}-terraform-rg"
location = var.location
}
# Application Insights
resource "azurerm_application_insights" "ai" {
name = "${var.name_prefix}-gridbotapi-ai"
resource_group_name = azurerm_resource_group.rg.name
location = azurerm_resource_group.rg.location
application_type = "web"
}
output "instrumentation_key" {
value = azurerm_application_insights.ai.instrumentation_key
sensitive = true
}
output "app_id" {
value = azurerm_application_insights.ai.app_id
}
# Key Vault
data "azurerm_client_config" "current" {}
resource "azurerm_key_vault" "kv" {
name = "${var.name_prefix}-kv"
resource_group_name = azurerm_resource_group.rg.name
location = azurerm_resource_group.rg.location
enabled_for_disk_encryption = true
tenant_id = data.azurerm_client_config.current.tenant_id
soft_delete_retention_days = 7
purge_protection_enabled = true
sku_name = "standard"
access_policy {
tenant_id = data.azurerm_client_config.current.tenant_id
object_id = data.azurerm_client_config.current.object_id
key_permissions = ["Get", "Create", "Delete", "List", "Restore", "Recover", "UnwrapKey", "WrapKey", "Purge", "Encrypt", "Decrypt", "Sign", "Verify", "GetRotationPolicy"]
secret_permissions = ["Get", "Set"]
}
}
output "tenant_id" {
value = data.azurerm_client_config.current.tenant_id
}
output "object_id" {
value = data.azurerm_client_config.current.object_id
}
resource "azurerm_key_vault_secret" "ai_connection_string" {
name = "ApplicationInsightsConnectionString"
value = azurerm_application_insights.ai.connection_string
key_vault_id = azurerm_key_vault.kv.id
}
# Azure App Configuration
resource "azurerm_app_configuration" "appconf" {
name = "${var.name_prefix}-appconf"
resource_group_name = azurerm_resource_group.rg.name
location = azurerm_resource_group.rg.location
sku = "standard"
}
resource "azurerm_role_assignment" "appconf_dataowner" {
scope = azurerm_app_configuration.appconf.id
role_definition_name = "App Configuration Data Owner"
principal_id = data.azurerm_client_config.current.object_id
}
resource "azurerm_app_configuration_key" "ai_connection_string" {
configuration_store_id = azurerm_app_configuration.appconf.id
key = "ApplicationInsights:ConnectionString"
value = "@Microsoft.KeyVault(SecretUri=${azurerm_key_vault_secret.ai_connection_string.id})"
depends_on = [
azurerm_role_assignment.appconf_dataowner
]
timeouts {
create = "2m"
}
}
最佳答案
您必须将运行 Terraform 的身份的“应用程序配置数据所有者”角色分配给应用程序配置资源的范围或任何父范围,因为应用程序配置 key 是使用数据平面 API 进行配置的,根据提供商文档(我也验证了它):
> 注意:应用程序配置 key 是使用数据平面 API 进行配置的,该 API 需要应用程序配置或父范围(例如资源组/订阅)上的应用程序配置数据所有者角色。可以在 Azure 应用程序配置文档中找到更多信息。
如果这有帮助,请投票/接受答案。
有关配置的提示:您可以直接引用 App Insights 的 connection_string,而不是连接其值,因为它是由资源本身导出的:
resource "azurerm_key_vault_secret" "ai_connection_string" {
name = "ApplicationInsightsConnectionString"
value = azurerm_application_insights.ai.connection_string
key_vault_id = azurerm_key_vault.kv.id
}
关于azure - Terraform 在 Azure 应用程序配置上挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76697759/
我有一个应用程序,当通过 eclipse 运行时,它会导致 eclipse 本身挂起。如果我将此应用程序导出为 jar 并运行它,它工作正常。但是,如果我运行(或调试)它,应用程序将显示为启动(根据
我正在将项目从 Rails2 切换到 Rails3。我跑: rails server 服务器启动没有错误: => Booting WEBrick => Rails 3.0.7 application
当我尝试使用 XCode 打开特定项目时,它挂起。当它挂起时,它显示以下屏幕: 其他项目可以正常打开,虽然挂起的项目也打开了,意味着我什么也做不了。我的 CPU 全速运行(风扇开始运转),我必须退出多
我正在使用 BNHtmlPdfKit 将 Html 呈现为 PDF。它工作得很好,但在 iOS8 中它只是挂起 [renderer drawPageAtIndex:i inRect:renderer.
我一直在尝试在 eclipse 中创建一个项目,并且有一个名为 InitRemoteEditJob 的工作正在阻止一切。它甚至没有被取消。 请建议怎么办? 最佳答案 这个错误有很多原因。 你可以试试这
我使用这个函数来发出 cURL 请求: function curl_request($options) //single custom cURL request. { $ch = curl_i
当我尝试归档某个项目时,Xcode 无法响应。如果让他一个人呆着,他会在很长一段时间后设法打开管理器。文件在那里。如果从 library/developer/xcode/archives 中手动删除,
有时我的 Eclipse 挂起,我需要猛烈地杀死它。但是,我一直无法正确地做到这一点。似乎 kill -9 实际上并没有以正确的方式关闭它,因为我仍然可以看到挂起的窗口。什么命令序列会正确杀死我的 E
我有一个JavaFX 8应用,它有时会挂起/冻结。我觉得我已经排除了造成此问题的许多原因,但它仍在发生。 不幸的是,我无法按需复制冻结/挂起。实际上,这仅发生在(到目前为止)我同事的计算机上。它可能在
我正在尝试学习网络基础知识,并且已经从this教程构建了回显服务器。我用telnet检查了服务器,它工作正常。 现在,当我使用Internet上的许多客户端示例中的一些示例时: // Create a
我正在尝试使用 SwiftUI 实现使用 Apple 登录,但在我输入正确的密码后它挂起。 我正在使用真实用户和模拟器以及 XCode 12.0 Beta。不幸的是,我现在没有可供测试的设备。我也尝试
我包括此简单的错误处理功能来格式化错误: date_default_timezone_set('America/New_York'); // Create the error handler. fun
我正在尝试为 VisualVM 安装一些插件,但它一直卡在下面的屏幕上 - 告诉我“请等待安装程序发现插件依赖项”。我运行的是 Ubuntu 12.04。当我尝试从“可用插件”列表中安装它们时,以及当
如果堆分配/取消分配/重新分配在另一个线程中进行,DbgHelp 库的 MiniDumpWriteDump() 将挂起。这是调用堆栈:DbgHelp 暂停其他线程,然后无限期地等待这些线程获得的互斥量
我正在尝试在 Eclipse C++ 版本中安装新软件。 帮助 -> 安装新软件。当我去安装新软件时,它会挂起或需要几个小时才能移动百分比。 我读到这是 JRE7 中的一个已知错误,我假设我在安装它后
这个问题已经有答案了: process.waitFor() never returns (12 个回答) 已关闭 3 年前。 我使用以下代码运行命令: open class AppRunner {
我正在尝试为 VisualVM 安装一些插件,但它一直卡在下面的屏幕上 - 告诉我“请等待安装程序发现插件依赖项”。我正在运行 Ubuntu 12.04。当我尝试从“可用插件”列表安装它们时,以及当我
如果堆分配/取消分配/重新分配在另一个线程中进行,DbgHelp 库的 MiniDumpWriteDump() 将挂起。这是调用堆栈:DbgHelp 暂停其他线程,然后无限期地等待这些线程获得的互斥量
尝试调试竞争条件,其中我们的应用程序的轮询器线程之一永远不会返回,导致 future 的轮询器永远不会被调度。用抽象术语来说,在捕获问题时隐藏我们的业务逻辑,这就是我们的代码路径。 我们必须更新远程服
我在程序完成时遇到 Java 的 ExecutorCompletionService 问题。 我需要使用 ExecutorCompletionService 而不是 ExecutorService 因
我是一名优秀的程序员,十分优秀!