resources/option_schema.template in zergrush_cf-0.0.1 vs resources/option_schema.template in zergrush_cf-0.0.2
- old
+ new
@@ -7,6 +7,42 @@
"template": {
"type": "object"
},
"template_parameters": {
"type": "object"
+},
+"storage": {
+ "type": "object",
+ "properties": {
+ "s3_bucket": {
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "public": {
+ "type": "boolean"
+ },
+ "files": {
+ "type": "array",
+ "items": {
+ "properties": {
+ "file": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ },
+ "required": [
+ "name",
+ "public",
+ "files"
+ ],
+ "additionalProperties": false
+ }
+ },
+ "required": [
+ "s3_bucket"
+ ],
+ "additionalProperties": false
}
\ No newline at end of file