Commit ad374e82 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/openstack: shuffle some fields to note unused fields

parent 5d32a1f6
...@@ -11,19 +11,21 @@ import ( ...@@ -11,19 +11,21 @@ import (
// RunConfig contains configuration for running an instance from a source // RunConfig contains configuration for running an instance from a source
// image and details on how to access that launched image. // image and details on how to access that launched image.
type RunConfig struct { type RunConfig struct {
SourceImage string `mapstructure:"source_image"` SourceImage string `mapstructure:"source_image"`
Flavor string `mapstructure:"flavor"` Flavor string `mapstructure:"flavor"`
RawSSHTimeout string `mapstructure:"ssh_timeout"` RawSSHTimeout string `mapstructure:"ssh_timeout"`
SSHUsername string `mapstructure:"ssh_username"` SSHUsername string `mapstructure:"ssh_username"`
SSHPort int `mapstructure:"ssh_port"` SSHPort int `mapstructure:"ssh_port"`
SSHInterface string `mapstructure:"ssh_interface"` SSHInterface string `mapstructure:"ssh_interface"`
OpenstackProvider string `mapstructure:"openstack_provider"` RackconnectWait bool `mapstructure:"rackconnect_wait"`
UseFloatingIp bool `mapstructure:"use_floating_ip"` FloatingIpPool string `mapstructure:"floating_ip_pool"`
RackconnectWait bool `mapstructure:"rackconnect_wait"` FloatingIp string `mapstructure:"floating_ip"`
FloatingIpPool string `mapstructure:"floating_ip_pool"` SecurityGroups []string `mapstructure:"security_groups"`
FloatingIp string `mapstructure:"floating_ip"` Networks []string `mapstructure:"networks"`
SecurityGroups []string `mapstructure:"security_groups"`
Networks []string `mapstructure:"networks"` // Not really used, but here for BC
OpenstackProvider string `mapstructure:"openstack_provider"`
UseFloatingIp bool `mapstructure:"use_floating_ip"`
// Unexported fields that are calculated from others // Unexported fields that are calculated from others
sshTimeout time.Duration sshTimeout time.Duration
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment