Sha256: 4b63e5f7b911947f22357c210edcb3cb9873166e947f3f9624f6d934788de969

Contents?: true

Size: 1.29 KB

Versions: 30

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

require_relative 'base'
require_relative '../options/global'

module RubyTerraform
  module Commands
    # Wraps the +terraform login+ command which retrieves an authentication
    # token for the given hostname, if it supports automatic login, and saves it
    # in a credentials file in your home directory.
    #
    # If no hostname is provided, the default hostname is app.terraform.io, to
    # log in to Terraform Cloud.
    #
    # If not overridden by credentials helper settings in the CLI configuration,
    # the credentials will be written to the following local file:
    #   ~/.terraform.d/credentials.tfrc.json
    #
    # For options accepted on construction, see {#initialize}.
    #
    # When executing an instance of {Login} via {#execute}, the following
    # options are supported:
    #
    # * +:chdir+: the path of a working directory to switch to before executing
    #   the given subcommand.
    #
    # @example Basic Invocation
    #   RubyTerraform::Commands::Login.new.execute
    #
    class Login < Base
      include RubyTerraform::Options::Global

      # @!visibility private
      def subcommands
        %w[login]
      end

      # @!visibility private
      def arguments(parameters)
        [parameters[:hostname]]
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
ruby-terraform-1.6.0.pre.4 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.6.0.pre.3 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.6.0.pre.2 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.6.0.pre.1 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.5.0 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.5.0.pre.5 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.5.0.pre.4 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.5.0.pre.3 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.5.0.pre.2 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.5.0.pre.1 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.4.0 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.4.0.pre.5 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.4.0.pre.4 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.4.0.pre.3 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.4.0.pre.2 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.4.0.pre.1 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.3.1 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.3.0 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.3.0.pre.3 lib/ruby_terraform/commands/login.rb
ruby-terraform-1.3.0.pre.2 lib/ruby_terraform/commands/login.rb