We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f44f3 commit 8b49092Copy full SHA for 8b49092
pkg/options/options.go
@@ -46,10 +46,10 @@ func FromEnv(skipMachine bool) (*Options, error) {
46
// if err != nil {
47
// return nil, err
48
// }
49
- // retOptions.MachineType, err = fromEnvOrError("MACHINE_TYPE")
50
- // if err != nil {
51
- // return nil, err
52
- // }
+ retOptions.MachineType, err = fromEnvOrError("MACHINE_TYPE")
+ if err != nil {
+ return nil, err
+ }
53
retOptions.Region, err = fromEnvOrError("REGION")
54
if err != nil {
55
return nil, err
0 commit comments