You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2023. It is now read-only.
"Description": "The optional public key. This allows users to supply the public key from a pre-existing key pair. If not supplied, a new key pair will be generated.",
354
-
"Type": "String",
355
-
},
356
-
"save_private_key": map[string]interface{}{
357
-
"AllowedValues": []string{
358
-
"True",
359
-
"true",
360
-
"False",
361
-
"false",
362
-
},
363
-
"Default": false,
364
-
"Description": "True if the system should remember a generated private key; False otherwise.",
365
-
"Type": "String",
366
-
},
367
-
},
368
-
Resources: map[string]interface{}{
369
-
"KeyPair": map[string]interface{}{
370
-
"Properties": map[string]interface{}{
371
-
"name": map[string]interface{}{
372
-
"Ref": "name",
373
-
},
374
-
"public_key": map[string]interface{}{
375
-
"Ref": "public_key",
376
-
},
377
-
"save_private_key": map[string]interface{}{
378
-
"Ref": "save_private_key",
379
-
},
380
-
},
381
-
"Type": "OS::Nova::KeyPair",
382
-
},
383
-
},
384
-
}
372
+
varGetTemplateExpected="{\n\"HeatTemplateFormatVersion\": \"2012-12-12\",\n\"Outputs\": {\n\"private_key\": {\n\"Description\": \"The private key if it has been saved.\",\n\"Value\": \"{\\\"Fn::GetAtt\\\": [\\\"KeyPair\\\", \\\"private_key\\\"]}\"\n },\n\"public_key\": {\n\"Description\": \"The public key.\",\n\"Value\": \"{\\\"Fn::GetAtt\\\": [\\\"KeyPair\\\", \\\"public_key\\\"]}\"\n }\n },\n\"Parameters\": {\n\"name\": {\n\"Description\": \"The name of the key pair.\",\n\"Type\": \"String\"\n },\n\"public_key\": {\n\"Description\": \"The optional public key. This allows users to supply the public key from a pre-existing key pair. If not supplied, a new key pair will be generated.\",\n\"Type\": \"String\"\n },\n\"save_private_key\": {\n\"AllowedValues\": [\n\"True\",\n\"true\",\n\"False\",\n\"false\"\n ],\n\"Default\": false,\n\"Description\": \"True if the system should remember a generated private key; False otherwise.\",\n\"Type\": \"String\"\n }\n },\n\"Resources\": {\n\"KeyPair\": {\n\"Properties\": {\n\"name\": {\n\"Ref\": \"name\"\n },\n\"public_key\": {\n\"Ref\": \"public_key\"\n },\n\"save_private_key\": {\n\"Ref\": \"save_private_key\"\n }\n },\n\"Type\": \"OS::Nova::KeyPair\"\n }\n }\n}"
385
373
386
374
// GetTemplateOutput represents the response body from a Template request.
0 commit comments