Sha256: 4e3749eb6d73de1f9a044a484116ac03c5229c6fdf314a4c02a8e06d1297f245

Contents?: true

Size: 401 Bytes

Versions: 6

Compression:

Stored size: 401 Bytes

Contents

# frozen_string_literal: true

require_relative 'base'

module RubyTerraform
  module Commands
    class RemoteConfig < Base
      def subcommands
        %w[remote config]
      end

      def options
        %w[
          -backend
          -backend-config
          -no-color
        ]
      end

      def parameter_defaults(_parameters)
        { backend_config: {} }
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-terraform-0.65.0.pre.15 lib/ruby_terraform/commands/remote_config.rb
ruby-terraform-0.65.0.pre.14 lib/ruby_terraform/commands/remote_config.rb
ruby-terraform-0.65.0.pre.13 lib/ruby_terraform/commands/remote_config.rb
ruby-terraform-0.65.0.pre.12 lib/ruby_terraform/commands/remote_config.rb
ruby-terraform-0.65.0.pre.11 lib/ruby_terraform/commands/remote_config.rb
ruby-terraform-0.65.0.pre.10 lib/ruby_terraform/commands/remote_config.rb