Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored and gmuloc committed Feb 27, 2024
1 parent 5e77873 commit dbefc55
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
| -------- | ---- | -------- | ------- | ------------------ | ----------- |
| [<samp>&lt;node_type_keys.key&gt;</samp>](## "<node_type_keys.key>") | Dictionary | | | | |
| [<samp>&nbsp;&nbsp;defaults</samp>](## "<node_type_keys.key>.defaults") | Dictionary | | | | Define variables for all nodes of this type. |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.defaults.ssl_profile") | String | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.defaults.ssl_profile") | String | | | | ssl_profile_name will be used as a name for cert,<br>keys which will be internally created by CVP and pushed to respective devices.<br>Used for communication with stun server. |
| [<samp>&nbsp;&nbsp;node_groups</samp>](## "<node_type_keys.key>.node_groups") | List, items: Dictionary | | | | Define variables related to all nodes part of this group. |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;group</samp>](## "<node_type_keys.key>.node_groups.[].group") | String | Required, Unique | | | The Node Group Name is used for MLAG domain unless set with 'mlag_domain_id'.<br>The Node Group Name is also used for peer description on downstream switches' uplinks.<br> |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nodes</samp>](## "<node_type_keys.key>.node_groups.[].nodes") | List, items: Dictionary | | | | Define variables per node. |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;name</samp>](## "<node_type_keys.key>.node_groups.[].nodes.[].name") | String | Required, Unique | | | The Node Name is used as "hostname". |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.node_groups.[].nodes.[].ssl_profile") | String | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.node_groups.[].ssl_profile") | String | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.node_groups.[].nodes.[].ssl_profile") | String | | | | ssl_profile_name will be used as a name for cert,<br>keys which will be internally created by CVP and pushed to respective devices.<br>Used for communication with stun server. |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.node_groups.[].ssl_profile") | String | | | | ssl_profile_name will be used as a name for cert,<br>keys which will be internally created by CVP and pushed to respective devices.<br>Used for communication with stun server. |
| [<samp>&nbsp;&nbsp;nodes</samp>](## "<node_type_keys.key>.nodes") | List, items: Dictionary | | | | Define variables per node. |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;name</samp>](## "<node_type_keys.key>.nodes.[].name") | String | Required, Unique | | | The Node Name is used as "hostname". |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.nodes.[].ssl_profile") | String | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ssl_profile</samp>](## "<node_type_keys.key>.nodes.[].ssl_profile") | String | | | | ssl_profile_name will be used as a name for cert,<br>keys which will be internally created by CVP and pushed to respective devices.<br>Used for communication with stun server. |

=== "YAML"

Expand All @@ -27,6 +27,10 @@

# Define variables for all nodes of this type.
defaults:

# ssl_profile_name will be used as a name for cert,
# keys which will be internally created by CVP and pushed to respective devices.
# Used for communication with stun server.
ssl_profile: <str>

# Define variables related to all nodes part of this group.
Expand All @@ -41,13 +45,25 @@

# The Node Name is used as "hostname".
- name: <str; required; unique>

# ssl_profile_name will be used as a name for cert,
# keys which will be internally created by CVP and pushed to respective devices.
# Used for communication with stun server.
ssl_profile: <str>

# ssl_profile_name will be used as a name for cert,
# keys which will be internally created by CVP and pushed to respective devices.
# Used for communication with stun server.
ssl_profile: <str>

# Define variables per node.
nodes:

# The Node Name is used as "hostname".
- name: <str; required; unique>

# ssl_profile_name will be used as a name for cert,
# keys which will be internally created by CVP and pushed to respective devices.
# Used for communication with stun server.
ssl_profile: <str>
```

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dbefc55

Please sign in to comment.