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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: Contributors to the Ansible project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
DOCUMENTATION = r"""
---
module: iam_instance_profile
version_added: 6.2.0
short_description: manage IAM instance profiles
description:
- Manage IAM instance profiles.
author:
- Mark Chappell (@tremble)
options:
state:
description:
- Desired state of the instance profile.
type: str
choices: ["absent", "present"]
default: "present"
name:
description:
- Name of the instance profile.
- >-
Note: Profile names are unique within an account. Paths (I(path)) do B(not) affect
the uniqueness requirements of I(name). For example it is not permitted to have both
C(/Path1/MyProfile) and C(/Path2/MyProfile) in the same account.
aliases: ["instance_profile_name"]
type: str
required: True
path:
description:
- The instance profile path.
- For more information about IAM paths, see the AWS IAM identifiers documentation
U(https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html).
- Updating the path on an existing profile is not currently supported and will result in a
warning.
- The parameter was renamed from C(prefix) to C(path) in release 7.2.0.
aliases: ["path_prefix", "prefix"]
type: str
role:
description:
- The name of the role to attach to the instance profile.
- To remove all roles from the instance profile set I(role="").
type: str
extends_documentation_fragment:
- amazon.aws.common.modules
- amazon.aws.region.modules
- amazon.aws.tags.modules
- amazon.aws.boto3
"""
EXAMPLES = r"""
- name: Create Instance Profile
amazon.aws.iam_instance_profile:
name: "ExampleInstanceProfile"
role: "/OurExamples/MyExampleRole"
path: "/OurExamples/"
tags:
ExampleTag: Example Value
register: profile_result
- name: Create second Instance Profile with default path
amazon.aws.iam_instance_profile:
name: "ExampleInstanceProfile2"
role: "/OurExamples/MyExampleRole"
tags:
ExampleTag: Another Example Value
register: profile_result
- name: Find all IAM instance profiles starting with /OurExamples/
amazon.aws.iam_instance_profile_info:
path_prefix: /OurExamples/
register: result
- name: Delete second Instance Profile
amazon.aws.iam_instance_profile:
name: "ExampleInstanceProfile2"
state: absent
"""
RETURN = r"""
iam_instance_profile:
description: List of IAM instance profiles
returned: always
type: complex
contains:
arn:
description: Amazon Resource Name for the instance profile.
returned: always
type: str
sample: arn:aws:iam::123456789012:instance-profile/AnsibleTestProfile
create_date:
description: Date instance profile was created.
returned: always
type: str
sample: '2023-01-12T11:18:29+00:00'
instance_profile_id:
description: Amazon Identifier for the instance profile.
returned: always
type: str
sample: AROA12345EXAMPLE54321
instance_profile_name:
description: Name of instance profile.
returned: always
type: str
sample: AnsibleTestEC2Policy
path:
description: Path of instance profile.
returned: always
type: str
sample: /
roles:
description: List of roles associated with this instance profile.
returned: always
type: list
sample: []
tags:
description: Instance profile tags.
type: dict
returned: always
sample: '{"Env": "Prod"}'
"""
from copy import deepcopy
from ansible_collections.amazon.aws.plugins.module_utils.iam import AnsibleIAMError
from ansible_collections.amazon.aws.plugins.module_utils.iam import add_role_to_iam_instance_profile
from ansible_collections.amazon.aws.plugins.module_utils.iam import create_iam_instance_profile
from ansible_collections.amazon.aws.plugins.module_utils.iam import delete_iam_instance_profile
from ansible_collections.amazon.aws.plugins.module_utils.iam import list_iam_instance_profiles
from ansible_collections.amazon.aws.plugins.module_utils.iam import normalize_iam_instance_profile
from ansible_collections.amazon.aws.plugins.module_utils.iam import remove_role_from_iam_instance_profile
from ansible_collections.amazon.aws.plugins.module_utils.iam import tag_iam_instance_profile
from ansible_collections.amazon.aws.plugins.module_utils.iam import untag_iam_instance_profile
from ansible_collections.amazon.aws.plugins.module_utils.iam import validate_iam_identifiers
from ansible_collections.amazon.aws.plugins.module_utils.modules import AnsibleAWSModule
from ansible_collections.amazon.aws.plugins.module_utils.retries import AWSRetry
from ansible_collections.amazon.aws.plugins.module_utils.tagging import compare_aws_tags
def describe_iam_instance_profile(client, name, prefix):
profiles = []
profiles = list_iam_instance_profiles(client, name=name, prefix=prefix)
if not profiles:
return None
return normalize_iam_instance_profile(profiles[0])
def create_instance_profile(client, name, path, tags, check_mode):
if check_mode:
return True, {"instance_profile_name": name, "path": path, "tags": tags or {}, "roles": []}
profile = create_iam_instance_profile(client, name, path, tags)
return True, normalize_iam_instance_profile(profile)
def ensure_tags(
original_profile,
client,
name,
tags,
purge_tags,
check_mode,
):
if tags is None:
return False, original_profile
original_tags = original_profile.get("tags") or {}
tags_to_set, tag_keys_to_unset = compare_aws_tags(original_tags, tags, purge_tags)
if not tags_to_set and not tag_keys_to_unset:
return False, original_profile
new_profile = deepcopy(original_profile)
desired_tags = deepcopy(original_tags)
for key in tag_keys_to_unset:
desired_tags.pop(key, None)
desired_tags.update(tags_to_set)
new_profile["tags"] = desired_tags
if not check_mode:
untag_iam_instance_profile(client, name, tag_keys_to_unset)
tag_iam_instance_profile(client, name, tags_to_set)
return True, new_profile
def ensure_role(
original_profile,
client,
name,
role,
check_mode,
):
if role is None:
return False, original_profile
if role == "" and not original_profile.get("roles"):
return False, original_profile
else:
desired_role = []
if original_profile.get("roles") and original_profile.get("roles")[0].get("role_name", None) == role:
return False, original_profile
else:
desired_role = [{"role_name": role}]
new_profile = deepcopy(original_profile)
new_profile["roles"] = desired_role
if check_mode:
return True, new_profile
if original_profile.get("roles"):
# We're changing the role, so we always need to remove the existing one first
remove_role_from_iam_instance_profile(client, name, original_profile["roles"][0]["role_name"])
if role:
add_role_to_iam_instance_profile(client, name, role)
return True, new_profile
def ensure_present(
original_profile,
client,
name,
path,
tags,
purge_tags,
role,
check_mode,
):
changed = False
if not original_profile:
changed, new_profile = create_instance_profile(
client,
name=name,
path=path,
tags=tags,
check_mode=check_mode,
)
else:
new_profile = deepcopy(original_profile)
role_changed, new_profile = ensure_role(
new_profile,
client,
name,
role,
check_mode,
)
tags_changed, new_profile = ensure_tags(
new_profile,
client,
name,
tags,
purge_tags,
check_mode,
)
changed |= role_changed
changed |= tags_changed
return changed, new_profile
def ensure_absent(
original_profile,
client,
name,
prefix,
check_mode,
):
if not original_profile:
return False
if check_mode:
return True
roles = original_profile.get("roles") or []
for role in roles:
remove_role_from_iam_instance_profile(client, name, role.get("role_name"))
return delete_iam_instance_profile(client, name)
def main():
"""
Module action handler
"""
argument_spec = dict(
name=dict(aliases=["instance_profile_name"], required=True),
path=dict(aliases=["path_prefix", "prefix"]),
state=dict(choices=["absent", "present"], default="present"),
tags=dict(aliases=["resource_tags"], type="dict"),
purge_tags=dict(type="bool", default=True),
role=dict(),
)
module = AnsibleAWSModule(
argument_spec=argument_spec,
supports_check_mode=True,
)
name = module.params.get("name")
state = module.params.get("state")
path = module.params.get("path")
identifier_problem = validate_iam_identifiers("instance profile", name=name, path=path)
if identifier_problem:
module.fail_json(msg=identifier_problem)
client = module.client("iam", retry_decorator=AWSRetry.jittered_backoff())
try:
original_profile = describe_iam_instance_profile(client, name, path)
if state == "absent":
changed = ensure_absent(
original_profile,
client,
name,
path,
module.check_mode,
)
final_profile = None
else:
# As of botocore 1.34.3, the APIs don't support updating the Name or Path
if original_profile and path and original_profile.get("path") != path:
module.warn(
"iam_instance_profile doesn't support updating the path: "
f"current path '{original_profile.get('path')}', requested path '{path}'"
)
changed, final_profile = ensure_present(
original_profile,
client,
name,
path,
module.params["tags"],
module.params["purge_tags"],
module.params["role"],
module.check_mode,
)
if not module.check_mode:
final_profile = describe_iam_instance_profile(client, name, path)
except AnsibleIAMError as e:
module.fail_json_aws_error(e)
results = {
"changed": changed,
"iam_instance_profile": final_profile,
}
if changed:
results["diff"] = {
"before": original_profile,
"after": final_profile,
}
module.exit_json(**results)
if __name__ == "__main__":
main()
|