Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve module ali_slb_lb and ali_slb_lb_facts #147

Merged
merged 1 commit into from
Jan 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ FEATURES:

IMPROVEMENTS:

- Improve module ali_slb_lb and ali_slb_lb_facts ([#147](https://github.com/alibaba/ansible-provider/pull/147))
- Improve ecs instance and eni docs ([#146](https://github.com/alibaba/ansible-provider/pull/146))
- Improve module ali_eip and add its testcase ([#145](https://github.com/alibaba/ansible-provider/pull/145))
- Improve dynamic inventory by setting page_size 100 ([#142](https://github.com/alibaba/ansible-provider/pull/142))
Expand Down
10 changes: 10 additions & 0 deletions examples/alicloud-ecs-vpc/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
- name: Create an alicloud vpc cluster using ansible-provider-alicloud
hosts: localhost
remote_user: root

tasks:
- name: get all instecs
ali_instance_facts:
alicloud_region: cn-hangzhou
register: all_instance
Loading