Method: Rebi::Environment#option_settings

Defined in:
lib/rebi/environment.rb

#option_settingsObject



89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/rebi/environment.rb', line 89

def option_settings
  check_created!
  client.describe_configuration_settings({
    application_name: app_name,
    environment_name: name
  }).configuration_settings.first.option_settings.map do |o|
    {
      namespace: o.namespace,
      value: o.value,
      resource_name: o.resource_name,
      option_name: o.option_name,
    }.with_indifferent_access
  end
end