Skip to content

Commit

Permalink
chore: Copy cloud app config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
snaselj committed Feb 28, 2024
1 parent d8160a8 commit a8832b9
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions nautobot_firewall_models/app-config-schema.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,36 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/nautobot/nautobot-app-firewall-models/develop/nautobot_firewall_models/app-config-schema.json",
"$comment": "TBD: Update $id, replace `develop` with the future release tag",
"type": "object",
"properties": {
"default_status": {
"type": "string",
"default": "active"
},
"allowed_status": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"Active"
]
"default": []
},
"capirca_remark_pass": {
"type": "boolean",
"default": true
},
"capirca_os_map": {
"type": "object",
"default": {}
"properties": {
"cisco_ios": {
"type": "string",
"enum": ["cisco", "ciscoasa", "cisconx", "ciscoxr"],
"default": "cisco"
},
"arista_eos": {
"type": "string",
"enum": ["arista"],
"default": "arista"
}
},
"additionalProperties": false
},
"protect_on_delete": {
"type": "boolean",
"default": true
"custom_capirca": {
"type": "string"
}
},
"additionalProperties": false
Expand Down

0 comments on commit a8832b9

Please sign in to comment.