Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cloudformation-http-resource

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloudformation-http-resource

Cloudformation resource to call any http API

  • 0.1.4
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Call any HTTP API using CloudFormation

An aws-cdk construct for calling HTTP API during CloudFormation stack update.

Usage

The Http resource provides 3 callbacks: onCreate, onUpdate and onDelete.

The following example will issue a POST request when a Some API resource creates:

import * as cdk from '@aws-cdk/core';
import { Http } from "cloudformation-http-resource";

export class ExamplesStack extends cdk.Stack {
  constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
    super(scope, id, props);

    const simpleOk = new Http(this, 'Some API', {
      onCreate: {
        method: 'POST',
        url: 'https://example.org/',
        headers: {
          'content-type': 'application/json'
        },
        body: {
          test: 123,
          nested: [{
            name: 'Piotr'
          }]
        }
      }
    });
  }
}

Response data

You can access response data easily and e.g. put it into stack outputs like so:

new CfnOutput(this, 'Response body test field', {
  description: "Response body test field",
  value: simpleOk.getResponseField("body.test")
})

new CfnOutput(this, 'Response header', {
  description: "Location of the resource",
  value: simpleOk.getResponseField("headers.location")
})

new CfnOutput(this, 'Response status code', {
  description: "Status code",
  value: simpleOk.getResponseField("statusCode")
})

Secrets

You can call APIs that require authentication tokens using SecretsManager:

import { Http, HttpCall } from "cloudformation-http-resource";
...

const secret: secretmanager.ISecret = getOrCreateSecret()

const apiCall: HttpCall = {
  url: 'https://example.org/',
  method: 'PUT',
  headers: {
    Authorization: `Bearer ${secret.secretValue}`
  },
  body: {
    secret: secret.secretValue,
  }
};

const includeSecret = new Http(this, 'SecretHttpCall', {
  onCreate: apiCall,
  onUpdate: apiCall
})

Keywords

FAQs

Package last updated on 10 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc