Skip to content

Commit

Permalink
Change documentation table
Browse files Browse the repository at this point in the history
  • Loading branch information
jonxstill committed Jul 2, 2024
1 parent 4684ef0 commit 142707d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
| Variable | Type | Required | Default | Value Restrictions | Description |
| -------- | ---- | -------- | ------- | ------------------ | ----------- |
| [<samp>underlay_ospf_area</samp>](## "underlay_ospf_area") | String | | `0.0.0.0` | Format: ipv4 | |
| [<samp>underlay_ospf_authentication</samp>](## "underlay_ospf_authentication") | Dictionary | | | | |
| [<samp>&nbsp;&nbsp;enabled</samp>](## "underlay_ospf_authentication.enabled") | Boolean | | `False` | | |
| [<samp>&nbsp;&nbsp;message_digest_keys</samp>](## "underlay_ospf_authentication.message_digest_keys") | List, items: Dictionary | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;id</samp>](## "underlay_ospf_authentication.message_digest_keys.[].id") | Integer | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;hash_algorithm</samp>](## "underlay_ospf_authentication.message_digest_keys.[].hash_algorithm") | String | | `sha512` | Valid Values:<br>- <code>md5</code><br>- <code>sha1</code><br>- <code>sha256</code><br>- <code>sha384</code><br>- <code>sha512</code> | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;key</samp>](## "underlay_ospf_authentication.message_digest_keys.[].key") | String | | | | Key password<br>Only plaintext passwords are supported here as the password will ned to be encrypted for every underlay interface.<br>To protect the password at rest it is recommended to make use of Ansible Vault or similar.<br> |
| [<samp>underlay_ospf_bfd_enable</samp>](## "underlay_ospf_bfd_enable") | Boolean | | `False` | | |
| [<samp>underlay_ospf_max_lsa</samp>](## "underlay_ospf_max_lsa") | Integer | | `12000` | | |
| [<samp>underlay_ospf_process_id</samp>](## "underlay_ospf_process_id") | Integer | | `100` | | |
Expand All @@ -16,6 +22,16 @@

```yaml
underlay_ospf_area: <str; default="0.0.0.0">
underlay_ospf_authentication:
enabled: <bool; default=False>
message_digest_keys:
- id: <int>
hash_algorithm: <str; "md5" | "sha1" | "sha256" | "sha384" | "sha512"; default="sha512">

# Key password
# Only plaintext passwords are supported here as the password will ned to be encrypted for every underlay interface.
# To protect the password at rest it is recommended to make use of Ansible Vault or similar.
key: <str>
underlay_ospf_bfd_enable: <bool; default=False>
underlay_ospf_max_lsa: <int; default=12000>
underlay_ospf_process_id: <int; default=100>
Expand Down

This file was deleted.

2 changes: 2 additions & 0 deletions python-avd/pyavd/_eos_designs/schema/eos_designs.schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4027,6 +4027,8 @@ keys:
format: ipv4
default: 0.0.0.0
underlay_ospf_authentication:
documentation_options:
table: ospf-settings
type: dict
keys:
enabled:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
type: dict
keys:
underlay_ospf_authentication:
documentation_options:
table: ospf-settings
type: dict
keys:
enabled:
Expand Down

0 comments on commit 142707d

Please sign in to comment.