Sha256: acc8044d0190007804653d8802949dab728f6107d3e5e1c019dd7d80164378b9
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 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" } 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 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.6 | lib/practice_terraforming/resource/iam_user.rb |