共用方式為


Microsoft.GuestConfiguration guestConfigurationAssignments 2018-01-20-preview

Bicep 資源定義

guestConfigurationAssignments 資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.GuestConfiguration/guestConfigurationAssignments 資源,請將下列 Bicep 新增至範本。

resource symbolicname 'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-01-20-preview' = {
  scope: resourceSymbolicName or scope
  location: 'string'
  name: 'string'
  properties: {
    guestConfiguration: {
      configurationParameter: {
        value: [
          {}
        ]
      }
      kind: 'string'
      name: 'string'
      type: 'string'
    }
  }
}

屬性值

ConfigurationParameter

名字 描述 價值

ConfigurationParameterList

名字 描述 價值
價值 表示組態參數的清單。 ConfigurationParameter[]

GuestConfigurationAssignmentProperties

名字 描述 價值
guestConfiguration 要指派的來賓設定。 GuestConfigurationNavigation

GuestConfigurationNavigation

名字 描述 價值
configurationParameter 客體設定的組態參數。 ConfigurationParameterList
客體設定的種類。 例如:DSC 'DSC'
名字 來賓組態的名稱。 字串
類型 來賓組態的類型。 字串

Microsoft.GuestConfiguration/guestConfigurationAssignments

名字 描述 價值
位置 VM 所在的區域。 字串
名字 資源名稱 字串 (必要)
性能 來賓組態指派的屬性。 GuestConfigurationAssignmentProperties
範圍 在與部署範圍不同的範圍內建立資源時,請使用 。 將此屬性設定為資源的符號名稱,以套用 擴充資源

快速入門範例

下列快速入門範例會部署此資源類型。

Bicep 檔案 描述
SQL Server 2014 VM & IIS VM 在 VNET 中建立 1 或 2 個 IIS Windows 2012 R2 網頁伺服器和一個後端 SQL Server 2014。
使用 Azure 安全基準 Windows VM 此範本會在具有公用IP位址的新虛擬網路中建立執行 Windows Server 的虛擬機。 部署機器之後,就會安裝客體設定延伸模組,並套用適用於 Windows Server 的 Azure 安全基準。 如果機器的設定漂移,您可以再次部署範本來重新套用設定。

ARM 樣本資源定義

guestConfigurationAssignments 資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.GuestConfiguration/guestConfigurationAssignments 資源,請將下列 JSON 新增至範本。

{
  "type": "Microsoft.GuestConfiguration/guestConfigurationAssignments",
  "apiVersion": "2018-01-20-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "guestConfiguration": {
      "configurationParameter": {
        "value": [
          {
          }
        ]
      },
      "kind": "string",
      "name": "string",
      "type": "string"
    }
  }
}

屬性值

ConfigurationParameter

名字 描述 價值

ConfigurationParameterList

名字 描述 價值
價值 表示組態參數的清單。 ConfigurationParameter[]

GuestConfigurationAssignmentProperties

名字 描述 價值
guestConfiguration 要指派的來賓設定。 GuestConfigurationNavigation

GuestConfigurationNavigation

名字 描述 價值
configurationParameter 客體設定的組態參數。 ConfigurationParameterList
客體設定的種類。 例如:DSC 'DSC'
名字 來賓組態的名稱。 字串
類型 來賓組態的類型。 字串

Microsoft.GuestConfiguration/guestConfigurationAssignments

名字 描述 價值
apiVersion API 版本 '2018-01-20-preview'
位置 VM 所在的區域。 字串
名字 資源名稱 字串 (必要)
性能 來賓組態指派的屬性。 GuestConfigurationAssignmentProperties
類型 資源類型 'Microsoft.GuestConfiguration/guestConfigurationAssignments'

快速入門範本

下列快速入門範本會部署此資源類型。

範本 描述
SQL Server 2014 VM & IIS VM

部署至 Azure
在 VNET 中建立 1 或 2 個 IIS Windows 2012 R2 網頁伺服器和一個後端 SQL Server 2014。
使用 Azure 安全基準 Windows VM

部署至 Azure
此範本會在具有公用IP位址的新虛擬網路中建立執行 Windows Server 的虛擬機。 部署機器之後,就會安裝客體設定延伸模組,並套用適用於 Windows Server 的 Azure 安全基準。 如果機器的設定漂移,您可以再次部署範本來重新套用設定。

Terraform (AzAPI 提供者) 資源定義

guestConfigurationAssignments 資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.GuestConfiguration/guestConfigurationAssignments 資源,請將下列 Terraform 新增至您的範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-01-20-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  body = jsonencode({
    properties = {
      guestConfiguration = {
        configurationParameter = {
          value = [
            {
            }
          ]
        }
        kind = "string"
        name = "string"
        type = "string"
      }
    }
  })
}

屬性值

ConfigurationParameter

名字 描述 價值

ConfigurationParameterList

名字 描述 價值
價值 表示組態參數的清單。 ConfigurationParameter[]

GuestConfigurationAssignmentProperties

名字 描述 價值
guestConfiguration 要指派的來賓設定。 GuestConfigurationNavigation

GuestConfigurationNavigation

名字 描述 價值
configurationParameter 客體設定的組態參數。 ConfigurationParameterList
客體設定的種類。 例如:DSC 'DSC'
名字 來賓組態的名稱。 字串
類型 來賓組態的類型。 字串

Microsoft.GuestConfiguration/guestConfigurationAssignments

名字 描述 價值
位置 VM 所在的區域。 字串
名字 資源名稱 字串 (必要)
parent_id 要套用此延伸模組資源之資源的標識碼。 字串 (必要)
性能 來賓組態指派的屬性。 GuestConfigurationAssignmentProperties
類型 資源類型 “Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-01-20-preview”