amplify-education / serverless-vpc-discovery

Serverless plugin for discovering VPC / Subnet / Security Group configuration by name.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error: Region is missing

jadsonbr opened this issue · comments

...
custom:
  serverless-layers:
    dependenciesPath: requirements.txt
    packageManagerExtraArgs: '--no-compile --no-color'
  pythonRequirements:
    layer:
      name: ${env:function_name}-layer
  vpcDiscovery:
    vpcName: ${env:vpc_tag_name}-VPC
    subnets:
      - tagKey: Name
        tagValues:
          - '${env:vpc_tag_name}-Subnet-Private-A'
      - tagKey: Name
        tagValues:
          - '${env:vpc_tag_name}-Subnet-Private-B'
      - tagKey: Name
        tagValues:
          - '${env:vpc_tag_name}-Subnet-Private-C'
provider:
  region: us-east-1
...

To set up, as the example above worked until version 4.1.0, but after that version, it is presenting the error "× Function 'lambda' VPC not configured based on the error: Error: Region is missing." What do I need to change to make it work again?