繁体   English   中英

AzureRM 自动化 DSC 配置

[英]AzureRM Automation DSC Configuration

我正在尝试配置 Azure DSC 配置,但我遇到了两个问题。

  1. 我继续收到此错误消息
  • 错误 = '无效字符 'c' 寻找值的开头' JSON = '配置 cdavdtest {}'* *2。 无论我对资源 azurerm_automation_dsc_configuration 做什么,它都会抛出此命令,该命令引用了我上次失败的 terraform 计划/应用。 更改配置没有任何作用,旧错误继续存在。 我感谢任何帮助。 与下面也以粗体显示的资源相比,请参阅粗体显示的 cdavdtest。 名称也没有更新,即使我将其更新为 dsc_configa,它仍然显示 dsc_config。

错误:对 AzureRM Automation Dsc 配置内容“cdavdtest”发出读取请求:automation.DscConfigurationClient#GetContent:响应请求失败:StatusCode = 200 - 原始错误:解组时发生错误 JSON - 错误 = '无效字符 'c' 寻找开始价值'JSON ='配置cdavdtest {}'││与azurerm_automation_dsc_configuration.dsc_config,│在automationaccount.tf第17行,在资源“azurerm_automation_dsc_configuration”“dsc_config”中:│17:资源azurerm_automation_dsc_configuration {

resource azurerm_automation_account automation_account {
    name = "${var.avd.name}-automationaccount"
    location = azurerm_resource_group.rg.location
    resource_group_name = azurerm_resource_group.rg.name
    sku_name = "Basic"
}

output "end_point" {
    value = azurerm_automation_account.automation_account.dsc_server_endpoint
}

output registration_key {
    value = azurerm_automation_account.automation_account.dsc_primary_access_key
}


resource azurerm_automation_dsc_configuration dsc_configa {
    name = "**test**"
    location = azurerm_resource_group.rg.location
    resource_group_name = azurerm_resource_group.rg.name 
    automation_account_name = azurerm_automation_account.automation_account.name
    description = "Configuration node for Azure Virtual Desktop"
    content_embedded = "Configuration **test** {}"
    log_verbose = true
}


我已经尝试注释掉代码,但仍然出现错误。 我试过更新名称。 我试过使用 <<BODY 并写出配置,但这仍然存在。

在我的环境中测试得到同样的错误。 该错误是由于azurerm_automation_dsc_configuration 自提供程序版本 2.96.0 以来已损坏

我使用的是最新的 terraform 提供商版本,即3.0.1

在此处输入图像描述

在此处输入图像描述

解决方案:建议您使用version = ">=2.10,<=2.30"之间的提供程序版本

Terraform 代码

main.tf文件

terraform {
  required_providers {
    azurerm = {
      source  = "hashicorp/azurerm"
      version = ">=2.10,<=2.30"
    }
  }
}

provider "azurerm" {
  features{}
  
}


data "azurerm_resource_group" "example" {
  name     = "XXXXXXxXXX"
}

resource "azurerm_automation_account" "example" {
  name                = "account1"
  location            = data.azurerm_resource_group.example.location
  resource_group_name = data.azurerm_resource_group.example.name
  sku_name = "Basic"
}


output "end_point" {
    value = azurerm_automation_account.example.dsc_server_endpoint
}

output "registration_key" {
    value = azurerm_automation_account.example.dsc_primary_access_key
}

resource "azurerm_automation_dsc_configuration" "example" {
  name                    = "test"
  resource_group_name     = data.azurerm_resource_group.example.name
  automation_account_name = azurerm_automation_account.example.name
  location                = data.azurerm_resource_group.example.location
  content_embedded        = "configuration test {}"
  log_verbose = true

  
}

输出 -

在此处输入图像描述


在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM