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']