Class: Terraforming::Resource::IAMRole
- Inherits:
-
Object
- Object
- Terraforming::Resource::IAMRole
show all
- Includes:
- Util
- Defined in:
- lib/terraforming/resource/iam_role.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from Util
#apply_template, #name_from_tag, #normalize_module_name, #prettify_policy, #template_path
Constructor Details
#initialize(client) ⇒ IAMRole
Returns a new instance of IAMRole.
14
15
16
|
# File 'lib/terraforming/resource/iam_role.rb', line 14
def initialize(client)
@client = client
end
|
Class Method Details
.tf(client: Aws::IAM::Client.new) ⇒ Object
6
7
8
|
# File 'lib/terraforming/resource/iam_role.rb', line 6
def self.tf(client: Aws::IAM::Client.new)
self.new(client).tf
end
|
.tfstate(client: Aws::IAM::Client.new) ⇒ Object
10
11
12
|
# File 'lib/terraforming/resource/iam_role.rb', line 10
def self.tfstate(client: Aws::IAM::Client.new)
self.new(client).tfstate
end
|
Instance Method Details
#tf ⇒ Object
18
19
20
|
# File 'lib/terraforming/resource/iam_role.rb', line 18
def tf
apply_template(@client, "tf/iam_role")
end
|
#tfstate ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/terraforming/resource/iam_role.rb', line 22
def tfstate
iam_roles.inject({}) do |resources, role|
attributes = {
"arn" => role.arn,
"assume_role_policy" =>
prettify_policy(role.assume_role_policy_document, breakline: true, unescape: true),
"id" => role.role_name,
"name" => role.role_name,
"path" => role.path,
"unique_id" => role.role_id,
}
resources["aws_iam_role.#{module_name_of(role)}"] = {
"type" => "aws_iam_role",
"primary" => {
"id" => role.role_name,
"attributes" => attributes
}
}
resources
end
end
|