- remove unused Heat templates - move security groups stack fixture to framework Change-Id: I56cc623cb3a425bb1bc2ea2ac8619ee28a7b8e77changes/86/663886/5
parent
533d89a241
commit
f59ba4e26e
@ -1,28 +0,0 @@
|
||||
heat_template_version: 2015-04-30
|
||||
|
||||
description: |
|
||||
Creates a nova ssh keypair
|
||||
|
||||
|
||||
parameters:
|
||||
public_key:
|
||||
type: string
|
||||
|
||||
|
||||
resources:
|
||||
|
||||
key_name:
|
||||
type: OS::Heat::RandomString
|
||||
properties:
|
||||
length: 32
|
||||
|
||||
key_pair:
|
||||
type: OS::Nova::KeyPair
|
||||
properties:
|
||||
name: {get_attr: [key_name, value]}
|
||||
public_key: {get_param: public_key}
|
||||
|
||||
|
||||
outputs:
|
||||
key_name:
|
||||
value: {get_attr: [key_name, value]}
|
@ -1,32 +0,0 @@
|
||||
heat_template_version: newton
|
||||
|
||||
|
||||
description: |
|
||||
Stack of resources used to test floating IP
|
||||
|
||||
|
||||
resources:
|
||||
|
||||
icmp_security_group:
|
||||
type: OS::Neutron::SecurityGroup
|
||||
properties:
|
||||
name: icmp
|
||||
rules:
|
||||
- protocol: icmp
|
||||
|
||||
ssh_security_group:
|
||||
type: OS::Neutron::SecurityGroup
|
||||
properties:
|
||||
name: ssh
|
||||
rules:
|
||||
- protocol: tcp
|
||||
port_range_min: 22
|
||||
port_range_max: 22
|
||||
|
||||
outputs:
|
||||
|
||||
icmp_security_group_id:
|
||||
value: {get_resource: icmp_security_group}
|
||||
|
||||
ssh_security_group_id:
|
||||
value: {get_resource: ssh_security_group}
|
Loading…
Reference in new issue