summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/network/aos
diff options
context:
space:
mode:
authorcurry9999 <mi_ra_cl_e@hotmail.com>2018-08-09 08:10:26 +0900
committerJohn R Barker <john@johnrbarker.com>2018-08-08 16:10:26 -0700
commit2d79589515278e5b9f618504aea94c9a635c754d (patch)
tree85ea184cec6e4642607d3d851ff8ef054842f570 /lib/ansible/modules/network/aos
parent4a0b32083cbfdf2d66df5cfa2ed1efba903bd286 (diff)
downloadansible-2d79589515278e5b9f618504aea94c9a635c754d.tar.gz
To improve readability, we added a line feed. (#43801)
* modified: google/gcp_compute_backend_bucket.py modified: google/gcp_compute_backend_service.py modified: google/gcp_compute_forwarding_rule.py modified: google/gcp_compute_global_forwarding_rule.py modified: google/gcp_compute_image.py modified: google/gcp_compute_instance.py modified: google/gcp_compute_instance_group.py modified: google/gcp_compute_instance_group_manager.py modified: google/gcp_compute_instance_template.py modified: google/gcp_compute_route.py modified: google/gcp_compute_subnetwork.py modified: google/gcp_compute_target_http_proxy.py modified: google/gcp_compute_target_https_proxy.py modified: google/gcp_compute_target_ssl_proxy.py modified: google/gcp_compute_target_tcp_proxy.py modified: google/gcp_compute_url_map.py modified: google/gcp_container_node_pool.py modified: google/gcp_dns_resource_record_set.py modified: google/gcp_pubsub_subscription.py modified: google/gcp_storage_bucket_access_control.py * modified: lib/ansible/modules/cloud/amazon/aws_ses_identity.py modified: lib/ansible/modules/cloud/amazon/route53_facts.py modified: lib/ansible/modules/cloud/cloudscale/cloudscale_server.py modified: lib/ansible/modules/network/aos/_aos_logical_device.py modified: lib/ansible/modules/network/aos/_aos_rack_type.py modified: lib/ansible/modules/network/aos/_aos_template.py modified: lib/ansible/modules/network/cumulus/nclu.py modified: lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_launch.py modified: lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_wait.py
Diffstat (limited to 'lib/ansible/modules/network/aos')
-rw-r--r--lib/ansible/modules/network/aos/_aos_logical_device.py1
-rw-r--r--lib/ansible/modules/network/aos/_aos_rack_type.py1
-rw-r--r--lib/ansible/modules/network/aos/_aos_template.py1
3 files changed, 3 insertions, 0 deletions
diff --git a/lib/ansible/modules/network/aos/_aos_logical_device.py b/lib/ansible/modules/network/aos/_aos_logical_device.py
index 7cf6022be2..4634ca5380 100644
--- a/lib/ansible/modules/network/aos/_aos_logical_device.py
+++ b/lib/ansible/modules/network/aos/_aos_logical_device.py
@@ -87,6 +87,7 @@ EXAMPLES = '''
name: "my-logical-device"
state: present
register: logical_device
+
- name: "Save Logical Device into a JSON file 2/3"
copy:
content: "{{ logical_device.value | to_nice_json }}"
diff --git a/lib/ansible/modules/network/aos/_aos_rack_type.py b/lib/ansible/modules/network/aos/_aos_rack_type.py
index 83aa969f13..bacf9d948b 100644
--- a/lib/ansible/modules/network/aos/_aos_rack_type.py
+++ b/lib/ansible/modules/network/aos/_aos_rack_type.py
@@ -87,6 +87,7 @@ EXAMPLES = '''
name: "my-rack-type"
state: present
register: rack_type
+
- name: "Save Rack Type into a JSON file 2/3"
copy:
content: "{{ rack_type.value | to_nice_json }}"
diff --git a/lib/ansible/modules/network/aos/_aos_template.py b/lib/ansible/modules/network/aos/_aos_template.py
index c26bb95b73..56b941d1f4 100644
--- a/lib/ansible/modules/network/aos/_aos_template.py
+++ b/lib/ansible/modules/network/aos/_aos_template.py
@@ -96,6 +96,7 @@ EXAMPLES = '''
name: "my-template"
state: present
register: template
+
- name: "Save Template into a JSON file 2/3"
copy:
content: "{{ template.value | to_nice_json }}"