A simple REST API that counts the number of times a route has been hit. For a detailed walkthrough of this example, see the article Create a Serverless REST API.
Note: this example uses JavaScript promises, but if you're using Node 8, you can change the code to use
async
andawait
.
Note: some values in this example will be different from run to run. These values are indicated
with ***
.
-
Create a new stack:
$ pulumi stack init count-api-testing
-
Set the AWS region:
$ pulumi config set aws:region us-west-2
-
Restore NPM modules via
npm install
oryarn install
. -
Run
pulumi up
to preview and deploy changes:$ pulumi up Previewing update of stack 'count-api-testing' ... Updating stack 'count-api-testing' Performing changes: Type Name Status Info + pulumi:pulumi:Stack cloud-js-httpendpoint-count-api-testing created + ├─ cloud:table:Table counterTable created + │ └─ aws:dynamodb:Table counterTable created + └─ cloud:http:HttpEndpoint hello-world created + ├─ cloud:function:Function hello-world4fcc7b60 created + │ └─ aws:serverless:Function hello-world4fcc7b60 created + │ ├─ aws:iam:Role hello-world4fcc7b60 created + │ ├─ aws:lambda:Function hello-world4fcc7b60 created + │ ├─ aws:iam:RolePolicyAttachment hello-world4fcc7b60-32be53a2 created + │ └─ aws:iam:RolePolicyAttachment hello-world4fcc7b60-fd1a00e5 created + ├─ aws:apigateway:RestApi hello-world created + ├─ aws:apigateway:Deployment hello-world created + ├─ aws:lambda:Permission hello-world-4fcc7b60 created + └─ aws:apigateway:Stage hello-world created ---outputs:--- endpoint: "https://***.us-west-2.amazonaws.com/stage/" info: 14 changes performed: + 14 resources created Update duration: ***
-
View the endpoint URL and curl a few routes:
$ pulumi stack output Current stack outputs (1): OUTPUT VALUE endpoint https://***.us-west-2.amazonaws.com/stage/ $ curl $(pulumi stack output endpoint)/hello {"route":"hello","count":1} $ curl $(pulumi stack output endpoint)/hello {"route":"hello","count":2} $ curl $(pulumi stack output endpoint)/woohoo {"route":"woohoo","count":1}
-
To view the runtime logs of the Lambda function, use the
pulumi logs
command. To get a log stream, usepulumi logs --follow
.
-
Run
pulumi destroy
to tear down all resources. -
To delete the stack itself, run
pulumi stack rm
. Note that this command deletes all deployment history from the Pulumi Console.