From 2b2bfc80326826e67e9d173421bd2774bf4c4056 Mon Sep 17 00:00:00 2001 From: scottmishra Date: Wed, 9 May 2018 09:49:41 -0500 Subject: [PATCH] Update panos_security_rule.py (#39036) +label: docsite_pr --- 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 43242e83ec..2f2e539536 100755 --- a/lib/ansible/modules/network/panos/panos_security_rule.py +++ b/lib/ansible/modules/network/panos/panos_security_rule.py @@ -156,9 +156,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'] @@ -176,9 +176,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']