d917f5150b
This change fixes a typo in the swift.yaml template an extra "s" was removed in the word resources Closes-Bug: #1353941 Change-Id: I062eec8963645f19de42f7348524758f382cffa1
24 lines
621 B
YAML
24 lines
621 B
YAML
heat_template_version: 2013-05-23
|
|
description: Template which creates a Swift container resource
|
|
|
|
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] }
|