We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 714a830 commit 10eba0bCopy full SHA for 10eba0b
1 file changed
lib/tasks/eb_fast_deploy.rb
@@ -227,6 +227,14 @@ def print_env
227
228
end
229
230
+ desc "print the current env status"
231
+ task :print_current_status do
232
+ set_vars
233
+ env = AWS.elastic_beanstalk.client.describe_environments(:application_name=>ENV['APP_NAME'], :environment_names => [ENV['ENVIRONMENT']]).first
234
+ configuration_settings = AWS.elastic_beanstalk.client.describe_configuration_settings(:application_name=>ENV['APP_NAME'], :environment_name => ENV['ENVIRONMENT'])[:configuration_settings].first
235
+ configuration_settings[:option_settings].each {|o| puts "#{o[:namespace]} #{o[:option_name]}=#{o[:value]}"}
236
+ end
237
+
238
desc "upload project to s3"
239
task :upload do
240
print "=== upload project to s3 ===\n"
0 commit comments