Module: Terradactyl::Terraform::Subcommands::Refresh
- Defined in:
- lib/terradactyl/terraform/commands/refresh.rb
Instance Method Summary collapse
Instance Method Details
#defaults ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/terradactyl/terraform/commands/refresh.rb', line 7 def defaults { 'backup' => nil, 'input' => true, 'lock' => true, 'lock-timeout' => '0s', 'no-color' => false, 'state' => 'terraform.tfstate', 'state-out' => nil, # 'target' => [], # not implemented # 'var' => [], # not implemented 'var-file' => nil } end |
#switches ⇒ Object
22 23 24 25 26 |
# File 'lib/terradactyl/terraform/commands/refresh.rb', line 22 def switches %w[ no-color ] end |