This gist contains lists of modules available in
in AWS Lambda.
This gist contains lists of modules available in
in AWS Lambda.
| { | |
| "AWSTemplateFormatVersion":"2010-09-09", | |
| "Description":"A CloudFormation template for creating a Hosted Zone in Route53.", | |
| "Parameters":{ | |
| "Name":{ | |
| "Description":"A fully-qualified domain name.", | |
| "Type":"String", | |
| "MinLength":"1", | |
| "MaxLength":"64", | |
| "AllowedPattern":"(?!-)[a-zA-Z0-9-.]*(?<!-)", |
| import json | |
| import logging | |
| from flask import Flask, g | |
| from flask_oidc import OpenIDConnect | |
| import requests | |
| logging.basicConfig(level=logging.DEBUG) | |
| app = Flask(__name__) |
| #!/bin/sh | |
| aws cloudformation deploy \ | |
| --template-file stack.yaml \ | |
| --stack-name edge-lambda-test \ | |
| --capabilities CAPABILITY_IAM \ | |
| --parameter-overrides Nonce=$RANDOM |
| # sh -c "$(curl -fsSL https://gist.githubusercontent.com/gjgd/5a08da85a98bf147294f331461e44d1f/raw/a63bf0f4169a8ab651adfa0a56e676e6bc465876/setup-github-action-runner.sh)" | |
| # Update instance | |
| sudo apt update -y | |
| sudo apt upgrade -y | |
| # Install latest version of git | |
| sudo add-apt-repository ppa:git-core/ppa -y | |
| sudo apt-get update | |
| sudo apt-get install git -y |