Sha256: 4bb750a0abe39fcd702da90ce48aaff38e860809089c2a3d012f89d59680597b

Contents?: true

Size: 704 Bytes

Versions: 262

Compression:

Stored size: 704 Bytes

Contents

require 'travis/cli/setup'

module Travis
  module CLI
    class Setup
      class OpsWorks < Service
        description "deployment to OpsWorks"

        def run
          deploy 'opsworks' do |config|
            config['access_key_id'] = ask("Access key ID: ").to_s
            config['secret_access_key'] = ask("Secret access key: ") { |q| q.echo = "*" }.to_s
            config['app-id'] = ask("App ID: ").to_s
            config['migrate'] = true if agree("Migrate the Database? ") { |q| q.default = 'no' }

            encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
          end
        end
      end
    end
  end
end

Version data entries

262 entries across 262 versions & 3 rubygems

Version Path
travis-1.8.12.travis.1101.9 lib/travis/cli/setup/opsworks.rb
travis-1.8.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1098.9 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1081.9 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1059.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1058.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1056.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1051.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1048.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1044.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1041.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1040.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1026.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1025.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1024.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1022.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1021.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1020.11 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1012.9 lib/travis/cli/setup/opsworks.rb
travis-1.8.11.travis.1011.9 lib/travis/cli/setup/opsworks.rb