DATASOURCE::ECS::KeyPairs類型用于查詢一個或多個密鑰對。
語法
{
"Type": "DATASOURCE::ECS::KeyPairs",
"Properties": {
"KeyPairFingerPrint": String,
"KeyPairName": String,
"ResourceGroupId": String,
"Tags": List,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
KeyPairFingerPrint | String | 否 | 是 | 密鑰對的指紋。 | 根據RFC4716定義的公鑰指紋格式,采用MD5信息摘要算法。 |
KeyPairName | String | 否 | 是 | 密鑰對名稱。 | 支持正則表達式模糊搜索,使用
|
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"
]
}
}
}
}