Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinHebert committed Nov 30, 2014
1 parent 8b88bd6 commit f00a9d5
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions lib/vagrant-aws/config.rb
Original file line number Diff line number Diff line change
@@ -156,34 +156,34 @@ class Config < Vagrant.plugin("2", :config)
attr_accessor :elb

def initialize(region_specific=false)
@access_key_id = UNSET_VALUE
@ami = UNSET_VALUE
@availability_zone = UNSET_VALUE
@instance_ready_timeout = UNSET_VALUE
@instance_package_timeout = UNSET_VALUE
@instance_type = UNSET_VALUE
@keypair_name = UNSET_VALUE
@private_ip_address = UNSET_VALUE
@region = UNSET_VALUE
@endpoint = UNSET_VALUE
@version = UNSET_VALUE
@secret_access_key = UNSET_VALUE
@session_token = UNSET_VALUE
@security_groups = UNSET_VALUE
@subnet_id = UNSET_VALUE
@tags = {}
@user_data = UNSET_VALUE
@use_iam_profile = UNSET_VALUE
@block_device_mapping = []
@elastic_ip = UNSET_VALUE
@access_key_id = UNSET_VALUE
@ami = UNSET_VALUE
@availability_zone = UNSET_VALUE
@instance_ready_timeout = UNSET_VALUE
@instance_package_timeout = UNSET_VALUE
@instance_type = UNSET_VALUE
@keypair_name = UNSET_VALUE
@private_ip_address = UNSET_VALUE
@region = UNSET_VALUE
@endpoint = UNSET_VALUE
@version = UNSET_VALUE
@secret_access_key = UNSET_VALUE
@session_token = UNSET_VALUE
@security_groups = UNSET_VALUE
@subnet_id = UNSET_VALUE
@tags = {}
@user_data = UNSET_VALUE
@use_iam_profile = UNSET_VALUE
@block_device_mapping = []
@elastic_ip = UNSET_VALUE
@iam_instance_profile_arn = UNSET_VALUE
@iam_instance_profile_name = UNSET_VALUE
@terminate_on_shutdown = UNSET_VALUE
@ssh_host_attribute = UNSET_VALUE
@monitoring = UNSET_VALUE
@ebs_optimized = UNSET_VALUE
@associate_public_ip = UNSET_VALUE
@elb = UNSET_VALUE
@terminate_on_shutdown = UNSET_VALUE
@ssh_host_attribute = UNSET_VALUE
@monitoring = UNSET_VALUE
@ebs_optimized = UNSET_VALUE
@associate_public_ip = UNSET_VALUE
@elb = UNSET_VALUE

# Internal state (prefix with __ so they aren't automatically
# merged)

0 comments on commit f00a9d5

Please sign in to comment.