![Steven Hardy](/assets/img/avatar_default.png)
Initial import of content which currently exists in the main heat repo Change-Id: I326801f7e7274a1f8b41d4e0be733da0f80ebbcc
36 lines
861 B
Plaintext
36 lines
861 B
Plaintext
{
|
|
"AWSTemplateFormatVersion" : "2010-09-09",
|
|
|
|
"Description" : "Template to test OS::Swift::Container resources",
|
|
|
|
"Resources" : {
|
|
"SwiftContainerWebsite" : {
|
|
"Type" : "OS::Swift::Container",
|
|
"Properties" : {
|
|
"X-Container-Read" : ".r:*",
|
|
"X-Container-Meta" : {
|
|
"Web-Index" : "index.html",
|
|
"Web-Error" : "error.html"
|
|
},
|
|
"DeletionPolicy" : "Delete"
|
|
}
|
|
},
|
|
"SwiftContainer" : {
|
|
"Type" : "OS::Swift::Container",
|
|
"Properties" : {
|
|
}
|
|
}
|
|
},
|
|
|
|
"Outputs" : {
|
|
"WebsiteURL" : {
|
|
"Value" : { "Fn::GetAtt" : [ "SwiftContainer", "WebsiteURL" ] },
|
|
"Description" : "URL for website hosted on S3"
|
|
},
|
|
"DomainName" : {
|
|
"Value" : { "Fn::GetAtt" : [ "SwiftContainer", "DomainName" ] },
|
|
"Description" : "Domain of Swift host"
|
|
}
|
|
}
|
|
}
|