Class: Miam::Client

Inherits:
Object
  • Object
show all
Includes:
Logger::Helper
Defined in:
lib/miam/client.rb

Instance Method Summary collapse

Methods included from Logger::Helper

#log

Constructor Details

#initialize(options = {}) ⇒ Client

Returns a new instance of Client.



4
5
6
7
8
9
10
11
12
13
14
# File 'lib/miam/client.rb', line 4

def initialize(options = {})
  @options = {
    format: :ruby,
    exclude: []
  }.merge(options)
  aws_config = options.delete(:aws_config) || {}
  @iam = Aws::IAM::Client.new(aws_config)
  @sts = Aws::STS::Client.new(aws_config)
  @driver = Miam::Driver.new(@iam, @sts, options)
  @password_manager = options[:password_manager] || Miam::PasswordManager.new('-', options)
end

Instance Method Details

#apply(file) ⇒ Object



56
57
58
# File 'lib/miam/client.rb', line 56

def apply(file)
  walk(file)
end

#export(export_options = {}) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/miam/client.rb', line 16

def export(export_options = {})
  exported, group_users, instance_profile_roles = Miam::Exporter.export(@iam, @options)
  exported.sort_array!

  if block_given?
    [:users, :groups, :roles, :instance_profiles, :policies].each do |type|
      splitted = {:users => {}, :groups => {}, :roles => {}, :instance_profiles => {}, :policies => {}}

      if export_options[:split_more]
        exported[type].sort_by {|k, v| k }.each do |name, attrs|
          more_splitted = splitted.dup
          more_splitted[type] = {}
          more_splitted[type][name] = attrs

          dsl = exec_by_format(
            :ruby => proc { Miam::DSL.convert(more_splitted, @options).strip },
            :json => proc { JSON.pretty_generate(more_splitted) }
          )

          yield(:type => type, :name => name, :dsl => dsl)
        end
      else
        splitted[type] = exported[type]

        dsl = exec_by_format(
          :ruby => proc { Miam::DSL.convert(splitted, @options).strip },
          :json => proc { JSON.pretty_generate(splitted) }
        )

        yield(:type => type, :dsl => dsl)
      end
    end
  else
    dsl = exec_by_format(
      :ruby => proc { Miam::DSL.convert(exported, @options).strip },
      :json => proc { JSON.pretty_generate(exported) }
    )
  end
end