-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added set_stats example to cloud workflow (#173)
- Loading branch information
1 parent
552acdc
commit 035f815
Showing
4 changed files
with
51 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
- name: Display EC2 stats | ||
hosts: localhost | ||
gather_facts: false | ||
|
||
tasks: | ||
- name: Display stats for EC2 VPC and key pair | ||
ansible.builtin.debug: | ||
var: '{{ item }}' | ||
loop: | ||
- stat_aws_region | ||
- stat_aws_key_pair | ||
- stat_aws_vpc_id | ||
- stat_aws_vpc_cidr | ||
- stat_aws_subnet_id | ||
- stat_aws_subnet_cidr | ||
|
||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters