共用方式為


Microsoft.ExtendedLocation customLocations

Bicep 資源定義

customLocations 資源類型可以部署到:

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

資源格式

若要建立 Microsoft.ExtendedLocation/customLocations 資源,請將下列 Bicep 新增至您的範本。

resource symbolicname 'Microsoft.ExtendedLocation/customLocations@2021-08-31-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  identity: {
    type: 'string'
  }
  properties: {
    authentication: {
      type: 'string'
      value: 'string'
    }
    clusterExtensionIds: [
      'string'
    ]
    displayName: 'string'
    hostResourceId: 'string'
    hostType: 'Kubernetes'
    namespace: 'string'
    provisioningState: 'string'
  }
}

屬性值

customLocations

名稱 描述
NAME 資源名稱 字串 (必要)
location 資源所在的地理位置 字串 (必要)
tags 資源標籤。 標記名稱和值的字典。 請參閱 範本中的標記
身分識別 資源的身分識別。 身分識別
properties 自訂位置特定的屬性集 CustomLocationProperties

Identity

名称 描述
type 識別類型。 'None'
'SystemAssigned'

CustomLocationProperties

名稱 描述
驗證 (authentication) 這是選擇性的輸入,其中包含應該用來產生命名空間的驗證。 CustomLocationPropertiesAuthentication
clusterExtensionIds 包含附加元件的參考,其中包含要部署 CRD 和運算子的圖表。 string[]
displayName [自訂位置] 位置的顯示名稱。 字串
hostResourceId 連線的叢集或 AKS 叢集。 自訂位置 RP 會針對 listAdminCredentials 許可權執行 checkAccess API。 字串
hostType 自訂位置參考 (Kubernetes 等主機的類型...) 。 'Kubernetes'
命名空間 將在指定叢集上建立的 Kubernetes 命名空間。 字串
provisioningState 自訂位置的布建狀態。 字串

CustomLocationPropertiesAuthentication

名稱 描述
type 自訂位置驗證的類型 字串
value kubeconfig 值。 字串

ARM 範本資源定義

customLocations 資源類型可以部署到:

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

資源格式

若要建立 Microsoft.ExtendedLocation/customLocations 資源,請將下列 JSON 新增至您的範本。

{
  "type": "Microsoft.ExtendedLocation/customLocations",
  "apiVersion": "2021-08-31-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "identity": {
    "type": "string"
  },
  "properties": {
    "authentication": {
      "type": "string",
      "value": "string"
    },
    "clusterExtensionIds": [ "string" ],
    "displayName": "string",
    "hostResourceId": "string",
    "hostType": "Kubernetes",
    "namespace": "string",
    "provisioningState": "string"
  }
}

屬性值

customLocations

名稱 描述
type 資源類型 'Microsoft.ExtendedLocation/customLocations'
apiVersion 資源 API 版本 '2021-08-31-preview'
NAME 資源名稱 字串 (必要)
location 資源所在的地理位置 需要字串 ()
tags 資源標籤。 標記名稱和值的字典。 請參閱 範本中的標籤
身分識別 資源的身分識別。 身分識別
properties 自訂位置專屬的屬性集合 CustomLocationProperties

Identity

名称 描述
type 識別類型。 'None'
'SystemAssigned'

CustomLocationProperties

名稱 描述
驗證 (authentication) 這是選擇性的輸入,其中包含應該用來產生命名空間的驗證。 CustomLocationPropertiesAuthentication
clusterExtensionIds 包含附加元件的參考,其中包含部署 CRD 和運算子的圖表。 string[]
displayName 自訂位置位置的顯示名稱。 字串
hostResourceId 連線的叢集或 AKS 叢集。 自訂位置 RP 會針對 listAdminCredentials 許可權執行 checkAccess API。 字串
hostType 自訂位置所參考的主機類型 (Kubernetes 等...) 。 'Kubernetes'
命名空間 將在指定叢集上建立的 Kubernetes 命名空間。 字串
provisioningState 自訂位置的布建狀態。 字串

CustomLocationPropertiesAuthentication

名稱 描述
type 自訂位置驗證的類型 字串
value kubeconfig 值。 字串

Terraform (AzAPI 提供者) 資源定義

customLocations 資源類型可以部署到:

  • 資源群組

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

資源格式

若要建立 Microsoft.ExtendedLocation/customLocations 資源,請將下列 Terraform 新增至範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.ExtendedLocation/customLocations@2021-08-31-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  identity {
    type =  "SystemAssigned"
  }
  body = jsonencode({
    properties = {
      authentication = {
        type = "string"
        value = "string"
      }
      clusterExtensionIds = [
        "string"
      ]
      displayName = "string"
      hostResourceId = "string"
      hostType = "Kubernetes"
      namespace = "string"
      provisioningState = "string"
    }
  })
}

屬性值

customLocations

名稱 描述
type 資源類型 「Microsoft.ExtendedLocation/customLocations@2021-08-31-preview」
NAME 資源名稱 需要字串 ()
location 資源所在的地理位置 需要字串 ()
parent_id 若要部署至資源群組,請使用該資源群組的識別碼。 需要字串 ()
tags 資源標籤。 標記名稱和值的字典。
身分識別 資源的身分識別。 身分識別
properties 自訂位置專屬的屬性集合 CustomLocationProperties

Identity

名称 描述
type 識別類型。 「SystemAssigned」

CustomLocationProperties

名稱 描述
驗證 (authentication) 這是選擇性的輸入,其中包含應該用來產生命名空間的驗證。 CustomLocationPropertiesAuthentication
clusterExtensionIds 包含附加元件的參考,其中包含部署 CRD 和運算子的圖表。 string[]
displayName 自訂位置位置的顯示名稱。 字串
hostResourceId 連線的叢集或 AKS 叢集。 自訂位置 RP 會針對 listAdminCredentials 許可權執行 checkAccess API。 字串
hostType 自訂位置所參考的主機類型 (Kubernetes 等...) 。 「Kubernetes」
命名空間 將在指定叢集上建立的 Kubernetes 命名空間。 字串
provisioningState 自訂位置的布建狀態。 字串

CustomLocationPropertiesAuthentication

名稱 描述
type 自訂位置驗證的類型 字串
value kubeconfig 值。 字串