# frozen_string_literal: true require 'vagrant' ## Do not Modify this File! Modify the Hosts.yml, Hosts.rb, or Vagrantfile! module VagrantPlugins module ProviderLocal # This is used define the variables for the project class Config < Vagrant.plugin('2', :config) attr_accessor :brand, :boxshortname, :kernel, :debug, :boot, :vagrant_user, :vagrant_user_private_key_path, :clean_shutdown_time, :vagrant_user_pass, :vm_type, :partition_id, :sshport, :rdpport, :box, :vagrant_cloud_creator def initialize super @brand = 'aws' @kernel = nil @boxshortname = UNSET_VALUE @debug = nil @boot = UNSET_VALUE @box = UNSET_VALUE @clean_shutdown_time = 300 @vmtype = 'production' @partition_id = '0000' @sshport = '22' @rdpport = '3389' @vagrant_user = 'vagrant' @vagrant_user_pass = 'vagrant' @vagrant_user_private_key_path = './id_rsa' end end end end