blob: 6b938e41c4c9e4dbe203f3569c526e3c0e3f8047 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
---
requires_ansible: '>=2.9.10'
action_groups:
aws:
- aws_s3
- ec2
- aws_secret
- cloudfront_facts
- iam
- rds
- ec2
- aws_az_facts
- aws_caller_facts
- cloudformation_facts
- ec2_ami_facts
- ec2_eni_facts
- ec2_group_facts
- ec2_snapshot_facts
- ec2_vol_facts
- ec2_vpc_dhcp_option_facts
- ec2_vpc_net_facts
- ec2_vpc_subnet_facts
- aws_az_info
- aws_caller_info
- aws_s3
- cloudformation
- cloudformation_info
- ec2
- ec2_ami
- ec2_ami_info
- ec2_elb_lb
- ec2_eni
- ec2_eni_info
- ec2_group
- ec2_group_info
- ec2_key
- ec2_snapshot
- ec2_snapshot_info
- ec2_tag
- ec2_tag_info
- ec2_vol
- ec2_vol_info
- ec2_vpc_dhcp_option
- ec2_vpc_dhcp_option_info
- ec2_vpc_net
- ec2_vpc_net_info
- ec2_vpc_subnet
- ec2_vpc_subnet_info
- s3_bucket
plugin_routing:
modules:
aws_az_facts:
deprecation:
removal_date: 2022-06-01
warning_text: >-
aws_az_facts was renamed in Ansible 2.9 to aws_az_info.
Please update your tasks.
aws_caller_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
aws_caller_facts was renamed in Ansible 2.9 to aws_caller_info.
Please update your tasks.
cloudformation_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
cloudformation_facts has been deprecated and will be removed.
The cloudformation_info module returns the same information, but
not as ansible_facts. See the module documentation for more
information.
ec2_ami_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_ami_facts was renamed in Ansible 2.9 to ec2_ami_info.
Please update your tasks.
ec2_eni_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_eni_facts was renamed in Ansible 2.9 to ec2_eni_info.
Please update your tasks.
ec2_group_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_group_facts was renamed in Ansible 2.9 to ec2_group_info.
Please update your tasks.
ec2_snapshot_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_snapshot_facts was renamed in Ansible 2.9 to ec2_snapshot_info.
Please update your tasks.
ec2_vol_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_vol_facts was renamed in Ansible 2.9 to ec2_vol_info.
Please update your tasks.
ec2_vpc_dhcp_option_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_vpc_dhcp_option_facts was renamed in Ansible 2.9 to
ec2_vpc_dhcp_option_info. Please update your tasks.
ec2_vpc_net_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_vpc_net_facts was renamed in Ansible 2.9 to ec2_vpc_net_info.
Please update your tasks.
ec2_vpc_subnet_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_vpc_subnet_facts was renamed in Ansible 2.9 to
ec2_vpc_subnet_info. Please update your tasks.
|