Sha256: c465d8b24d421716e0561e477f7939b6c7389c229187791cc80fc1bfffbf0071
Contents?: true
Size: 1.37 KB
Versions: 30
Compression:
Stored size: 1.37 KB
Contents
# frozen_string_literal: true require_relative 'base' require_relative '../options/global' module RubyTerraform module Commands # Wraps the +terraform state show+ command which shows the attributes of a # resource in the Terraform state. # # This command shows the attributes of a single resource in the Terraform # state. The +:address+ argument must be used to specify a single resource. # You can view the list of available resources with {StateList}. # # For options accepted on construction, see {#initialize}. # # When executing an instance of {StateShow} via {#execute}, the following # options are supported: # # * +:address+: the module address or absolute resource address of the # resource instance to show; required. # * +:chdir+: the path of a working directory to switch to before executing # the given subcommand. # # @example Basic Invocation # RubyTerraform::Commands::StateShow.new.execute( # address: 'packet_device.worker') # class StateShow < Base include RubyTerraform::Options::Global # @!visibility private def subcommands %w[state show] end # @!visibility private def options %w[-state] + super end # @!visibility private def arguments(parameters) [parameters[:address]] end end end end
Version data entries
30 entries across 30 versions & 1 rubygems