update comment in the template
[heat-templates.git] / dev / cdn.yaml
blob63984c3dbdd88a197691671a001c7cd626752927
1 heat_template_version: 2015-10-15
3 description: |
4   Test Cloud Files CDN
6 resources:
8   container:
9     type: OS::Swift::Container
10     properties:
11       name: { get_param: "OS::stack_name" }
13   container_cdn:
14     type: Rackspace::Cloud::CloudFilesCDN
15     properties:
16       container: { get_resource: container }
17       ttl: 3600
19 outputs:
21   show:
22     value: { get_attr: [ container_cdn, show ] }
23     description: Show all attributes of the CDN configuration for the container
25   cdn_url:
26     value: { get_resource: container_cdn }
27     description: The URI for downloading container objects over HTTP.
29   ssl_url:
30     value: { get_attr: [ container_cdn, ssl_uri ] }
31     description: The URI for downloading container objects over HTTPS, using SSL.
33   streaming_url:
34     value: { get_attr: [ container_cdn, streaming_uri ] }
35     description: |
36       The URI for video streaming container objects that uses HTTP Dynamic
37       Streaming from Adobe.
39   ios_url:
40     value: { get_attr: [ container_cdn, ios_uri ] }
41     description: |
42       The URI for video streaming container objects that uses HTTP Live
43       Streaming from Apple.