本文為您介紹如何在創建資源實例時設置二次確認實例密碼。

背景信息

當創建資源棧,指定參數密碼時,由于只需輸入一次密碼,可能出現由于手誤輸入一個錯誤的密碼,導致無法登錄已創建的ECS實例、RDS實例或其它產品實例的現象。

操作步驟

  1. 當編輯資源棧模板時,在InstancePassword塊中,設置密碼參數屬性Confirmtrue
    "InstancePassword": {
        "Confirm": true,
        "NoEcho": true,
        "MaxLength": "41",
        "Description": "The login password of ECS instances",
        "Type": "String",
        "ConstraintDescription": "Consist of 8 to 41 characters of alphanumeric characters",
        "MinLength": "8",
        "AllowedPattern": "[a-zA-Z0-9]*"
    },                   
    注意 Confirm屬性只能用于NoEchotrue的參數中。
  2. 當創建資源棧時,在配置模板參數頁面,設置實例密碼。