Browse Source

Set existing vpc as default external network in the compose file

Signed-off-by: aiordache <[email protected]>
Signed-off-by: Nicolas De Loof <[email protected]>
aiordache 5 years ago
parent
commit
95c88acfb4
1 changed files with 0 additions and 8 deletions
  1. 0 8
      ecs/cmd/main/main.go

+ 0 - 8
ecs/cmd/main/main.go

@@ -81,7 +81,6 @@ func ComposeCommand(clusteropts *clusterOptions) *cobra.Command {
 
 type upOptions struct {
 	loadBalancerArn string
-	vpcID           string
 }
 
 func (o upOptions) LoadBalancerArn() *string {
@@ -90,12 +89,6 @@ func (o upOptions) LoadBalancerArn() *string {
 	}
 	return &o.loadBalancerArn
 }
-func (o upOptions) GetVPC() *string {
-	if o.vpcID == "" {
-		return nil
-	}
-	return &o.vpcID
-}
 
 func ConvertCommand(clusteropts *clusterOptions, projectOpts *compose.ProjectOptions) *cobra.Command {
 	cmd := &cobra.Command{
@@ -135,7 +128,6 @@ func UpCommand(clusteropts *clusterOptions, projectOpts *compose.ProjectOptions)
 		}),
 	}
 	cmd.Flags().StringVar(&opts.loadBalancerArn, "load-balancer", "", "")
-	cmd.Flags().StringVar(&opts.vpcID, "vpc-id", "", "")
 	return cmd
 }