You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/plugins/Modules_and_action_plugins/cv_workflow.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,10 @@ The `arista.avd.cv_workflow` module is an Ansible Action Plugin providing the fo
58
58
| <samp> id</samp> | str | optional | None | - | Optional ID to use for the created Workspace. If there is already a workspace with the same ID, it must be in the 'pending' state. |
59
59
| <samp> requested_state</samp> | str | optional | built | Valid values:<br>- <code>pending</code><br>- <code>built</code><br>- <code>submitted</code><br>- <code>abandoned</code><br>- <code>deleted</code> | The requested state for the Workspace.<br><br>- `pending`: Leave the Workspace in pending state.<br>- `built`: Build the Workspace but do not submit.<br>- `submitted` (default): Build and submit the Workspace.<br>- `abandoned`: Build and then abandon the Workspace.<br> Used for dry-run where no changes will be committed to CloudVision.<br>- `deleted`: Build, abort and then delete the Workspace.<br> Used for dry-run where no changes will be committed to CloudVision and the temporary Workspace will be removed to avoid "clutter". |
60
60
| <samp> force</samp> | bool | optional | False | - | Force submit the workspace even if some devices are not actively streaming to CloudVision. |
61
+
| <samp> build_warnings</samp> | dict | optional | None | - | Configuration for Workspace build warnings handling. |
| <samp> suppress_patterns</samp> | list | optional |[]| - | Arbitrary list of regex patterns used with fullmatch to suppress EOS CLI warnings. |
64
+
| <samp> suppress_portfast</samp> | bool | optional | False | - | Suppress Workspace build warnings related to the usage of the `portfast` feature on switchports. |
61
65
| <samp>change_control</samp> | dict | optional | None | - | CloudVision Change Control to create for the deployment. |
62
66
| <samp> name</samp> | str | optional | None | - | Optional name to use for the created Change Control. By default the name generated by CloudVision will be kept. |
63
67
| <samp> description</samp> | str | optional | None | - | Optional description to use for the created Change Control. |
@@ -129,6 +133,10 @@ The `arista.avd.cv_workflow` module is an Ansible Action Plugin providing the fo
129
133
# id: <uuid or similar>
130
134
requested_state: submitted
131
135
force: true
136
+
build_warnings:
137
+
# enabled: true
138
+
suppress_patterns: [".*/32 IPv4 address is not configured on the interface.*"]
0 commit comments