diff --git a/plugins/modules/panos_active_in_ha.py b/plugins/modules/panos_active_in_ha.py index ee9f93ce6..dc77ef305 100644 --- a/plugins/modules/panos_active_in_ha.py +++ b/plugins/modules/panos_active_in_ha.py @@ -35,7 +35,7 @@ - pandevice can be obtained from PyPI U(https://pypi.python.org/pypi/pandevice) - pan-os-upgrade-assurance can be obtained from PyPI U(https://pypi.org/project/panos-upgrade-assurance) notes: - - Only Firewalls are supported. + - Panorama is not supported. - Check mode is not supported. extends_documentation_fragment: - paloaltonetworks.panos.fragments.transitional_provider @@ -113,6 +113,7 @@ def main(): force_fail=dict(type="bool", default=False), skip_config_sync=dict(type="bool", default=False), ), + panorama_error="This is a firewall only module" ) module = AnsibleModule( diff --git a/plugins/modules/panos_readiness_checks.py b/plugins/modules/panos_readiness_checks.py index 1a75fd331..30e2a1ea7 100644 --- a/plugins/modules/panos_readiness_checks.py +++ b/plugins/modules/panos_readiness_checks.py @@ -37,7 +37,7 @@ - pandevice can be obtained from PyPI U(https://pypi.python.org/pypi/pandevice) - pan-os-upgrade-assurance can be obtained from PyPI U(https://pypi.org/project/panos-upgrade-assurance) notes: - - Only Firewalls are supported. + - Panorama is not supported. - Check mode is not supported. extends_documentation_fragment: - paloaltonetworks.panos.fragments.transitional_provider @@ -165,6 +165,7 @@ def main(): force_fail=dict(type="bool", default=False), skip_force_locale=dict(type="bool", default=False), ), + panorama_error="This is a firewall only module" ) module = AnsibleModule( diff --git a/plugins/modules/panos_snapshot_report.py b/plugins/modules/panos_snapshot_report.py index 96d0f01f9..81e6e77ab 100644 --- a/plugins/modules/panos_snapshot_report.py +++ b/plugins/modules/panos_snapshot_report.py @@ -40,7 +40,7 @@ - pandevice can be obtained from PyPI U(https://pypi.python.org/pypi/pandevice) - pan-os-upgrade-assurance can be obtained from PyPI U(https://pypi.python.org/pypi/pan-os-upgrade-assurance) notes: - - Only Firewalls are supported. + - This is an offline module, no device connection is made. - Check mode is not supported. options: left_snapshot: diff --git a/plugins/modules/panos_state_snapshot.py b/plugins/modules/panos_state_snapshot.py index d0c746dc2..d3370201d 100644 --- a/plugins/modules/panos_state_snapshot.py +++ b/plugins/modules/panos_state_snapshot.py @@ -37,7 +37,7 @@ - pandevice can be obtained from PyPI U(https://pypi.python.org/pypi/pandevice) - pan-os-upgrade-assurance can be obtained from PyPI U(https://pypi.python.org/pypi/pan-os-upgrade-assurance) notes: - - Only Firewalls are supported. + - Panorama is not supported. - Check mode is not supported. extends_documentation_fragment: - paloaltonetworks.panos.fragments.transitional_provider @@ -135,6 +135,7 @@ def main(): argument_spec=dict( state_areas=dict(type="list", default=["all"], elements="str") ), + panorama_error="This is a firewall only module" ) module = AnsibleModule(