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模糊搜尋,使用
|
ResourceGroupId | String | 否 | 是 | 金鑰組所在的資源群組ID。 | 無 |
Tags | List | 否 | 是 | 金鑰組的標籤。 | 最多支援20個標籤。 更多資訊,請參見Tags屬性。 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
Tags文法
"Tags": [
{
"Value": String,
"Key": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Value | String | 否 | 否 | 金鑰組的標籤值。 | 長度為0~128個字元,不能以 |
Key | String | 是 | 否 | 金鑰組的標籤鍵。 | 長度為1~128個字元,不能以 |
返回資料(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"
]
}
}
}
}