Initial OpenECOMP MSO commit
[so.git] / packages / arquillian-unit-tests / src / test / resources / resource-examples / asdc / simpleNotif-V4 / artifacts / hot-nimbus-swift-container_v1.0.yaml
1 heat_template_version: 2013-05-23\r
2 \r
3 description: heat template that creates PCRF Session Manager stack\r
4 \r
5 parameters:\r
6    pcrf_swift_container_name_1:\r
7      type: string\r
8      label: Swift Container name\r
9      description: Swift Container Name\r
10    pcrf_swift_container_purge_on_delete_flag_1:\r
11      type: boolean\r
12      label: Purge on Delete Flag\r
13      description: Purge on Delete Flag\r
14 \r
15 resources:\r
16   pcrf_swift_container_1:\r
17     type: OS::Swift::Container\r
18     properties:\r
19       name: { get_param: pcrf_swift_container_name_1 }\r
20       PurgeOnDelete: { get_param: pcrf_swift_container_purge_on_delete_flag_1 }\r
21       X-Container-Read: ".r:*"\r
22      \r
23 outputs:\r
24   pcrf_swift_container_id_1:\r
25     description: the pcrf_swift_container_1 id\r
26     value: { get_resource: pcrf_swift_container_1 }\r
27   pcrf_swift_container_url_1:\r
28     description: the pcrf_swift_container_1 url\r
29     value: { get_attr: [ pcrf_swift_container_1, WebsiteURL ] }\r
30