Sha256: 17e44ff883763bf6971373ee1375166b8ab102ac3692fef04032f604ef63f589
Contents?: true
Size: 1.65 KB
Versions: 1
Compression:
Stored size: 1.65 KB
Contents
# frozen_string_literal: true module PracticeTerraforming module Resource class IAMUser include PracticeTerraforming::Util # TODO: Select appropriate Client class from here: # http://docs.aws.amazon.com/sdkforruby/api/index.html def self.tf(client: Aws::IAM::Client.new) self.new(client).tf end # TODO: Select appropriate Client class from here: # http://docs.aws.amazon.com/sdkforruby/api/index.html def self.tfstate(client: Aws::IAM::Client.new) self.new(client).tfstate end def initialize(client) @client = client end def tf apply_template(@client, "tf/iam_user") end 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", "tags" => iam_tags_of(user).map { |t| [t.key, t.value] }.to_h } resources["aws_iam_user.#{module_name_of(user)}"] = { "type" => "aws_iam_user", "primary" => { "id" => user.user_name, "attributes" => attributes } } resources end end private def iam_users @client.list_users.map(&:users).flatten end def iam_tags_of(user) @client.list_user_tags(user_name: user.user_name).map(&:tags).flatten end def module_name_of(user) normalize_module_name(user.user_name) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
practice_terraforming-0.1.7 | lib/practice_terraforming/resource/iam_user.rb |