115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
# File 'lib/vagrant-openstack-plugin/config.rb', line 115
def finalize!
@api_key = nil if @api_key == UNSET_VALUE
@endpoint = nil if @endpoint == UNSET_VALUE
@flavor = /m1.tiny/ if @flavor == UNSET_VALUE
@image = /cirros/ if @image == UNSET_VALUE
@server_name = nil if @server_name == UNSET_VALUE
@metadata = nil if @metadata == UNSET_VALUE
@username = nil if @username == UNSET_VALUE
@network = nil if @network == UNSET_VALUE
@address_id = 'public' if @address_id == UNSET_VALUE
@keypair_name = nil if @keypair_name == UNSET_VALUE
@scheduler_hints = nil if @scheduler_hints == UNSET_VALUE
@availability_zone = nil if @availability_zone == UNSET_VALUE
@security_groups = nil if @security_groups == UNSET_VALUE
@ssh_username = nil if @ssh_username == UNSET_VALUE
@tenant = nil if @tenant == UNSET_VALUE
@user_data = "" if @user_data == UNSET_VALUE
@floating_ip = nil if @floating_ip == UNSET_VALUE
@region = nil if @region == UNSET_VALUE
end
|