Class: Terraforming::Resource::IAMInstanceProfile
- Inherits:
-
Object
- Object
- Terraforming::Resource::IAMInstanceProfile
show all
- Includes:
- Util
- Defined in:
- lib/terraforming/resource/iam_instance_profile.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
Returns a new instance of IAMInstanceProfile.
14
15
16
|
# File 'lib/terraforming/resource/iam_instance_profile.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_instance_profile.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_instance_profile.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_instance_profile.rb', line 18
def tf
apply_template(@client, "tf/iam_instance_profile")
end
|
#tfstate ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/terraforming/resource/iam_instance_profile.rb', line 22
def tfstate
iam_instance_profiles.inject({}) do |resources, profile|
attributes = {
"arn" => profile.arn,
"id" => profile.instance_profile_name,
"name" => profile.instance_profile_name,
"path" => profile.path,
"roles.#" => profile.roles.length.to_s,
}
resources["aws_iam_instance_profile.#{module_name_of(profile)}"] = {
"type" => "aws_iam_instance_profile",
"primary" => {
"id" => profile.instance_profile_name,
"attributes" => attributes
}
}
resources
end
end
|