diff options
author | blsaws <bryan.sullivan@att.com> | 2016-09-08 23:36:43 -0700 |
---|---|---|
committer | blsaws <bryan.sullivan@att.com> | 2016-09-08 23:36:43 -0700 |
commit | 73153f94bea2d8502befa4c57515905ed4e41466 (patch) | |
tree | d4d693def48ca0f10f8bd7a8a7c5a9c2f89b96a3 /tests/blueprints/heat/hello-world.hot | |
parent | 213e916cb6a63a79ff3ceac7d9bec48b251be922 (diff) |
Fix line endings again
JIRA: MODELS-23
Change-Id: I7a4d36373e87c64827c215891eee9ec1d84b37b1
Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'tests/blueprints/heat/hello-world.hot')
-rwxr-xr-x | tests/blueprints/heat/hello-world.hot | 76 |
1 files changed, 38 insertions, 38 deletions
diff --git a/tests/blueprints/heat/hello-world.hot b/tests/blueprints/heat/hello-world.hot index a4d6a7e..398bc62 100755 --- a/tests/blueprints/heat/hello-world.hot +++ b/tests/blueprints/heat/hello-world.hot @@ -1,38 +1,38 @@ -heat_template_version: 2013-05-23
-description: 'Hello World'
-parameters: {}
-resources:
- VDU1:
- type: OS::Nova::Server
- properties:
- availability_zone: nova
- config_drive: false
- flavor: {get_resource: VDU1_flavor}
- image: cirros-0.3.4-x86_64-uec
- networks:
- - port:
- get_resource: CP1
- - port:
- get_resource: CP2
- - port:
- get_resource: CP3
- user_data_format: SOFTWARE_CONFIG
- CP1:
- type: OS::Neutron::Port
- properties:
- network: vnf_mgmt
- CP2:
- type: OS::Neutron::Port
- properties:
- network: vnf_private
- CP3:
- type: OS::Neutron::Port
- properties:
- network: public
- VDU1_flavor:
- properties: {disk: 1, ram: 512, vcpus: 1}
- type: OS::Nova::Flavor
-outputs:
- mgmt_ip-VDU1:
- value:
- get_attr: [CP1, fixed_ips, 0, ip_address]
+heat_template_version: 2013-05-23 +description: 'Hello World' +parameters: {} +resources: + VDU1: + type: OS::Nova::Server + properties: + availability_zone: nova + config_drive: false + flavor: {get_resource: VDU1_flavor} + image: cirros-0.3.4-x86_64-uec + networks: + - port: + get_resource: CP1 + - port: + get_resource: CP2 + - port: + get_resource: CP3 + user_data_format: SOFTWARE_CONFIG + CP1: + type: OS::Neutron::Port + properties: + network: vnf_mgmt + CP2: + type: OS::Neutron::Port + properties: + network: vnf_private + CP3: + type: OS::Neutron::Port + properties: + network: public + VDU1_flavor: + properties: {disk: 1, ram: 512, vcpus: 1} + type: OS::Nova::Flavor +outputs: + mgmt_ip-VDU1: + value: + get_attr: [CP1, fixed_ips, 0, ip_address] |