mirror of https://github.com/docker/compose.git
fixing empty vpcId
Signed-off-by: flaviostutz <flaviostutz@gmail.com>
This commit is contained in:
parent
810461179b
commit
25c5a8cd72
|
@ -167,8 +167,8 @@ func (b *ecsAPIService) parseClusterExtension(ctx context.Context, project *type
|
||||||
func (b *ecsAPIService) parseVPCExtension(ctx context.Context, project *types.Project) (string, []awsResource, error) {
|
func (b *ecsAPIService) parseVPCExtension(ctx context.Context, project *types.Project) (string, []awsResource, error) {
|
||||||
var vpc string
|
var vpc string
|
||||||
if x, ok := project.Extensions[extensionVPC]; ok {
|
if x, ok := project.Extensions[extensionVPC]; ok {
|
||||||
vpcID := x.(string)
|
vpc = x.(string)
|
||||||
err := b.aws.CheckVPC(ctx, vpcID)
|
err := b.aws.CheckVPC(ctx, vpc)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", nil, err
|
return "", nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue