From 6efa406b6f1733dfca7d96b4d5f1d228e6ad609a Mon Sep 17 00:00:00 2001
From: Brian Coca <brian.coca+git@gmail.com>
Date: Wed, 23 Dec 2015 12:00:36 -0500
Subject: [PATCH] added examples to route53_zone

fixes #1061
---
 cloud/amazon/route53_zone.py | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/cloud/amazon/route53_zone.py b/cloud/amazon/route53_zone.py
index 33a76ea0c4a..ca8034fac07 100644
--- a/cloud/amazon/route53_zone.py
+++ b/cloud/amazon/route53_zone.py
@@ -52,6 +52,29 @@ extends_documentation_fragment:
 author: "Christopher Troup (@minichate)"
 '''
 
+EXAMPLES = '''
+# create a public zone
+- route53_zone: zone=example.com state=present comment="this is an example"
+
+# delete a public zone
+- route53_zone: zone=example.com state=absent
+
+- name: private zone for devel
+  route53_zome: zone=devel.example.com state=present vpc_id={{myvpc_id}} comment='developer domain'
+
+# more complex example
+- name: register output after creating zone in parameterized region
+  route53_zone:
+    vpc_id: "{{ vpc.vpc_id }}"
+    vpc_region: "{{ ec2_region }}"
+    zone: "{{ vpc_dns_zone }}"
+    state: present
+    register: zone_out
+
+- debug: var=zone_out
+
+'''
+
 import time
 
 try: