summaryrefslogtreecommitdiffstats
path: root/tosca2heat/heat-translator-0.3.0/translator/tests/data/hot_output/hot_single_object_store.yaml
blob: 91491e347a57f13b702cfeb3dd6791d0b69e4945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
heat_template_version: 2013-05-23

description: >
  Tosca template for creating an object storage service.

parameters:
  objectstore_name:
    type: string
    default: myobjstore

resources:
  obj_store_server:
    type: OS::Swift::Container
    properties:
      X-Container-Meta:
        Quota-Bytes: 1000000000
      X-Container-Read: ".r:*"
      name:
        get_param: objectstore_name

outputs: {}