Skip to content

An interface to authenticate AWS api requests from within google scripts

Notifications You must be signed in to change notification settings

smithy545/aws-apps-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 

Repository files navigation

aws-apps-scripts

An interface to authenticate AWS api requests from within google apps scripts.

How to use:

  1. Create a new project in google scripts.

  2. Copy paste aws.js into it's own file in your project and save it.

  3. Open up a new a file and setup the AWS variable with AWS.init.

  4. Use AWS.request with whatever AWS API request you need! Make sure the headers and parameters are correctly set up, though. This function only sets up the Host, X-Amz-Date, X-Amz-Target, and Authorization headers by default.

Note: X-Amz-Target is (as far as I know) only used in POST requests and it is set to the "action" parameter provided by default.

Command usage:

AWS.request(service, region, action, params={}, method='GET', payload='', headers={"Host": GeneratedHost, "X-Amz-Date": GeneratedX-Amz-Date, "X-Amz-Target": action}, uri='/')

Example:

function myFunction() {
  AWS.init("MY_ACCESS_KEY", "MY_SECRET_KEY");
  var instanceXML = AWS.request('ec2', 'us-east-1', 'DescribeInstances', {"Version":"2015-10-01"});
  ...
}

About

An interface to authenticate AWS api requests from within google scripts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published