You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: drivers/amazonec2/amazonec2.go
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,11 @@ const (
47
47
)
48
48
49
49
var (
50
-
dockerPort=2376
51
-
swarmPort=3376
50
+
dockerPort=2376
51
+
swarmPort=3376
52
+
errorMissingAccessKeyOption=errors.New("amazonec2 driver requires the --amazonec2-access-key option")
53
+
errorMissingSecretKeyOption=errors.New("amazonec2 driver requires the --amazonec2-secret-key option")
54
+
errorNoVPCIdFound=errors.New("amazonec2 driver requires either the --amazonec2-subnet-id or --amazonec2-vpc-id option or an AWS Account with a default vpc-id")
0 commit comments