Skip to content

Commit

Permalink
jinja updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ctyrider committed Jan 3, 2025
1 parent a7dee53 commit 128e67f
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 0 deletions.

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

Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ monitor connectivity
{% if host.url is arista.avd.defined %}
url {{ host.url }}
{% endif %}
{% if host.icmp_echo_size is arista.avd.defined %}
icmp echo size {{ host.icmp_echo_size }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
Expand Down Expand Up @@ -95,6 +98,9 @@ monitor connectivity
{% if host.url is arista.avd.defined %}
url {{ host.url }}
{% endif %}
{% if host.icmp_echo_size is arista.avd.defined %}
icmp echo size {{ host.icmp_echo_size }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
10 changes: 10 additions & 0 deletions python-avd/pyavd/_eos_cli_config_gen/schema/__init__.py

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

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

Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ keys:
default: true
url:
type: str
icmp_echo_size:
type: int
description: Size of ICMP probe in bytes.
convert_types:
- str
min: 36
max: 18024
vrfs:
type: list
primary_key: name
Expand Down Expand Up @@ -115,3 +122,10 @@ keys:
default: true
url:
type: str
icmp_echo_size:
type: int
description: Size of ICMP probe in bytes.
convert_types:
- str
min: 36
max: 18024

0 comments on commit 128e67f

Please sign in to comment.