class Terraforming::Resource::IAMUser

Public Class Methods

new(client) click to toggle source
# File lib/terraforming/resource/iam_user.rb, line 14
def initialize(client)
  @client = client
end
tf(client: Aws::IAM::Client.new) click to toggle source
# File lib/terraforming/resource/iam_user.rb, line 6
def self.tf(client: Aws::IAM::Client.new)
  self.new(client).tf
end
tfstate(client: Aws::IAM::Client.new) click to toggle source
# File lib/terraforming/resource/iam_user.rb, line 10
def self.tfstate(client: Aws::IAM::Client.new)
  self.new(client).tfstate
end

Public Instance Methods

tf() click to toggle source
# File lib/terraforming/resource/iam_user.rb, line 18
def tf
  apply_template(@client, "tf/iam_user")
end
tfstate() click to toggle source
# File lib/terraforming/resource/iam_user.rb, line 22
def tfstate
  iam_users.inject({}) do |resources, user|
    attributes = {
      "arn" => user.arn,
      "id" => user.user_name,
      "name" => user.user_name,
      "path" => user.path,
      "unique_id" => user.user_id,
      "force_destroy" => "false",
    }
    resources["aws_iam_user.#{module_name_of(user)}"] = {
      "type" => "aws_iam_user",
      "primary" => {
        "id" => user.user_name,
        "attributes" => attributes,
      }
    }

    resources
  end
end

Private Instance Methods

iam_users() click to toggle source
# File lib/terraforming/resource/iam_user.rb, line 46
def iam_users
  @client.list_users.map(&:users).flatten
end
module_name_of(user) click to toggle source
# File lib/terraforming/resource/iam_user.rb, line 50
def module_name_of(user)
  normalize_module_name(user.user_name)
end