Sha256: 636f8a72aaee10a7f2e73460a17b6752c0d4dc1af55e3e109ea432e013d905ae

Contents?: true

Size: 687 Bytes

Versions: 16

Compression:

Stored size: 687 Bytes

Contents

module Kontena::Cli::Nodes::Aws
  class TerminateCommand < Clamp::Command
    include Kontena::Cli::Common

    parameter "NAME", "Node name"
    option "--access-key", "ACCESS_KEY", "AWS access key ID", required: true
    option "--secret-key", "SECRET_KEY", "AWS secret key", required: true
    option "--region", "REGION", "EC2 Region", required: true

    def execute
      require_api_url
      require_current_grid

      require 'kontena/machine/aws'
      grid = client(require_token).get("grids/#{current_grid}")
      destroyer = Kontena::Machine::Aws::NodeDestroyer.new(client(require_token), access_key, secret_key, region)
      destroyer.run!(grid, name)
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
kontena-cli-0.11.7 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.11.6 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.11.5 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.11.4 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.11.3 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.11.2 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.11.1 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.11.0 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.10.3 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.10.2 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.10.1 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.10.0 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.9.3 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.9.2 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.9.1 lib/kontena/cli/nodes/aws/terminate_command.rb
kontena-cli-0.9.0 lib/kontena/cli/nodes/aws/terminate_command.rb