Merge "Added method to OpenStackHeatStack to return OpenStackRouter objects."
[snaps.git] / snaps / openstack / tests / heat / keypair_heat_template.yaml
1 ##############################################################################
2 # Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs")
3 #                    and others.  All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at:
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 ##############################################################################
17 heat_template_version: 2015-04-30
18
19 description: >
20   Test template that simply deploys a keypair with a generated key
21
22 parameters:
23   keypair_name:
24     type: string
25     label: Keypair name
26     description: The name of the stack's keypair
27     default: keypair_name
28
29 resources:
30   keypair:
31     type: OS::Nova::KeyPair
32     properties:
33       name: { get_param: keypair_name }
34       save_private_key: True
35
36 outputs:
37   private_key:
38     description: "SSH Private Key"
39     value: { get_attr: [ keypair, private_key ]}