全部產品
Search
文件中心

:DATASOURCE::ECS::KeyPairs

更新時間:Oct 30, 2024

DATASOURCE::ECS::KeyPairs類型用於查詢一個或多個金鑰組。

文法

{
  "Type": "DATASOURCE::ECS::KeyPairs",
  "Properties": {
    "KeyPairFingerPrint": String,
    "KeyPairName": String,
    "ResourceGroupId": String,
    "Tags": List,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

KeyPairFingerPrint

String

金鑰組的指紋。

根據RFC4716定義的公開金鑰指紋格式,採用MD5資訊摘要演算法。

KeyPairName

String

金鑰組名稱。

支援Regex模糊搜尋,使用*匹配子運算式,取值樣本:

  • *SshKey:查詢以SshKey結尾的金鑰組名稱,包括SshKey。

  • SshKey*:查詢以SshKey開頭的金鑰組名稱,包括SshKey。

  • *SshKey*:查詢名稱中間有SshKey的金鑰組,包括SshKey。

  • SshKey:精確匹配SshKey。

ResourceGroupId

String

金鑰組所在的資源群組ID。

Tags

List

金鑰組的標籤。

最多支援20個標籤。

更多資訊,請參見Tags屬性

RefreshOptions

String

當資源棧更新時,資料來源資源的重新整理策略。

有效值:

  • Never(預設值):更新堆棧時,從不重新整理資料來源資源。

  • Always:更新堆棧時,始終重新整理資料來源資源。

Tags文法

"Tags": [
  {
    "Value": String,
    "Key": String
  }
]

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Value

String

金鑰組的標籤值。

長度為0~128個字元,不能以aliyunacs:開頭,不能包含http://https://

Key

String

金鑰組的標籤鍵。

長度為1~128個字元,不能以aliyunacs:開頭,不能包含http://https://

返回資料(Fn::GetAtt)

  • KeyPairNames:金鑰組名稱列表。

  • KeyPairs:金鑰組詳情列表。

屬性名稱

類型

描述

約束

KeyPairNames

List

金鑰組名稱列表。

KeyPairs

List

金鑰組詳情列表。

KeyPairName

String

金鑰組的名稱。

取值樣本:testKeyPairName。

KeyPairFingerPrint

String

金鑰組的指紋。

取值樣本:ABC1234567。

ResourceGroupId

String

資源群組ID。

取值樣本:rg-amnhr7u7c7hj****。

Tags

List

金鑰組的標籤。

樣本

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "KeyPairName": {
      "Type": "String",
      "Description": "The name of the key pair. You can use the asterisk (*) symbol as a wildcard in regular expressions to query key pairs by performing a fuzzy search. Sample patterns:\n*SshKey: queries key pairs whose names end with SshKey, including the key pair named SshKey.\nSshKey*: queries key pairs whose names start with SshKey, including the key pair named SshKey.\n*SshKey*: queries key pairs whose names include SshKey, including the key pair named SshKey.\nSshKey: queries the key pair named SshKey."
    }
  },
  "Resources": {
    "KeyPairs": {
      "Type": "DATASOURCE::ECS::KeyPairs",
      "Properties": {
        "KeyPairName": {
          "Ref": "KeyPairName"
        }
      }
    }
  },
  "Outputs": {
    "KeyPairs": {
      "Value": {
        "Fn::GetAtt": [
          "KeyPairs",
          "KeyPairs"
        ]
      }
    },
    "KeyPairNames": {
      "Value": {
        "Fn::GetAtt": [
          "KeyPairs",
          "KeyPairNames"
        ]
      }
    }
  }
}