push addional code
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-software-product-manager / src / test / resources / nimbus / hot-nimbus-swift-container_v1.0.yaml
1 heat_template_version: 2013-05-23
2
3 description: heat template that creates PCRF Session Manager stack
4
5 parameters:
6    pcrf_swift_container_name_1:
7      type: string
8      label: Swift Container name
9      description: Swift Container Name
10    pcrf_swift_container_purge_on_delete_flag_1:
11      type: boolean
12      label: Purge on Delete Flag
13      description: Purge on Delete Flag
14
15 resources:
16   pcrf_swift_container_1:
17     type: OS::Swift::Container
18     properties:
19       name: { get_param: pcrf_swift_container_name_1 }
20       PurgeOnDelete: { get_param: pcrf_swift_container_purge_on_delete_flag_1 }
21       X-Container-Read: ".r:*"
22      
23 outputs:
24   pcrf_swift_container_id_1:
25     description: the pcrf_swift_container_1 id
26     value: { get_resource: pcrf_swift_container_1 }
27   pcrf_swift_container_url_1:
28     description: the pcrf_swift_container_1 url
29     value: { get_attr: [ pcrf_swift_container_1, WebsiteURL ] }
30