resources/option_schema.template in zergrush_cf-0.0.5 vs resources/option_schema.template in zergrush_cf-0.0.6
- old
+ new
@@ -11,9 +11,68 @@
"type": "string"
},
"template_parameters": {
"type": "object"
},
+"rabbit": {
+ "type": "object",
+ "properties": {
+ "bunny_params": {
+ "type": "object"
+ },
+ "queue": {
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "params": {
+ "type": "object"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "additionalProperties": false
+
+ },
+ "exchange": {
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "params": {
+ "type": "object"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "additionalProperties": false
+ },
+ "event_timestamp_name": {
+ "type": "string"
+ },
+ "event_resource_id_name": {
+ "type": "string"
+ },
+ "event_resource_type_name": {
+ "type": "string"
+ },
+ "event_resource_status_name": {
+ "type": "string"
+ },
+ "event_resource_reason_name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "bunny_params",
+ "queue"
+ ],
+ "additionalProperties": false
+},
"storage": {
"type": "object",
"properties": {
"s3_bucket": {
"type": "object",
\ No newline at end of file