From add3004bb8a6478a62564e52567f80f3dbfc33f7 Mon Sep 17 00:00:00 2001 From: Alicia Cozine Date: Wed, 9 May 2018 10:44:28 -0500 Subject: [PATCH] Update panos_security_rule.py (#39036) (#39911) +label: docsite_pr (cherry picked from commit 2b2bfc80326826e67e9d173421bd2774bf4c4056) --- lib/ansible/modules/network/panos/panos_security_rule.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ansible/modules/network/panos/panos_security_rule.py b/lib/ansible/modules/network/panos/panos_security_rule.py index e53a6a5aeb5..f9a0afcdaf5 100755 --- a/lib/ansible/modules/network/panos/panos_security_rule.py +++ b/lib/ansible/modules/network/panos/panos_security_rule.py @@ -167,9 +167,9 @@ EXAMPLES = ''' tag_name: ['ProjectX'] source_zone: ['public'] destination_zone: ['private'] - source: ['any'] + source_ip: ['any'] source_user: ['any'] - destination: ['1.1.1.1'] + destination_ip: ['1.1.1.1'] category: ['any'] application: ['ssh'] service: ['application-default'] @@ -187,9 +187,9 @@ EXAMPLES = ''' description: 'Allow HTTP multimedia only to host at 1.1.1.1' source_zone: ['public'] destination_zone: ['private'] - source: ['any'] + source_ip: ['any'] source_user: ['any'] - destination: ['1.1.1.1'] + destination_ip: ['1.1.1.1'] category: ['content-delivery-networks'] application: ['http-video', 'http-audio'] service: ['service-http', 'service-https']