SAM - Creating a new API Gateway with an existing Custom Domain

0

We are exploring using SAM for deployment and we want to use a single custom domain (e.g. api.example.com) and create a base path per microservice (e.g. api.example.com/svcA and api.example.com/svcB). Each microservice is its own project/repo and we want to keep it that way.

In working with SAM we found that it will always try to create the custom domain instead of using an existing one. This causes microservices to be undeployable because they try to create a custom domain that already exists.

Is it possible to do what I want? Is there an example of how to accomplish this?

asked 4 years ago2092 views
1 Answer
1

This ended up being very easy to accomplish. I had been focused on the custom domain part so much I overlooked that I could simply create a BasePathMapping. The following worked fine for me:

  BasePath:
    Type: AWS::ApiGateway::BasePathMapping
    Properties:
      BasePath: my-service
      DomainName: !Ref DomainName # I pass this in as a parameter per environment.
      RestApiId: !Ref MainApi  # This is my AWS::Serverless::Api resource
      Stage: default

Edited by: StealthSid2 on Jul 16, 2020 12:12 PM

answered 4 years ago
  • @StealthSid2, could you share your template.yml for two of your projects? I'm struggling to accomplish the same thing. I can get one project to use BasePathMapping with domain, but when I try to take the same approach in my second microservice project I get this error when trying to deploy in SAM:

    api.hostname.com | Mapping already exists in stack arn:aws:cloudformation:us- east-1:...

    Essentially it says the mapping already exists.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions