heat-templates/hot/swift.yaml
Thomas Herve a5b325551d Fix improper keys in HOT templates
We've been doing stronger validation nowadays and several templates are
container upper-case keys that don't validate anymore. This patch fixes
them.

Change-Id: I791195104484fa17096d6b7833387ef2d3f9acc0
2014-03-27 16:19:46 +01:00

24 lines
622 B
YAML

heat_template_version: 2013-05-23
description: Template which creates a Swift container ressource
resources:
SwiftContainerWebsite:
deletion_policy: "Delete"
type: OS::Swift::Container
properties:
X-Container-Read: ".r:*"
X-Container-Meta:
web-index: "index.html"
web-error: "error.html"
SwiftContainer:
type: OS::Swift::Container
outputs:
WebsiteURL:
description: "URL for website hosted on S3"
value: { get_attr: [SwiftContainerWebsite, WebsiteURL] }
DomainName:
description: "Domain of Swift host"
value: { get_attr: [SwiftContainer, DomainName] }