Last active
November 8, 2024 03:39
-
-
Save singledigit/3ac5ae997c2455f0dc77119d86478a85 to your computer and use it in GitHub Desktop.
Get all env variables for all AWS Lamda functions in a CloudFormation/SAM stack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# Use at your own risk and reward. | |
# requires boto3 to be installed | |
# example `./get-vars.py MyStack > vars.json` | |
import sys, json | |
import boto3 | |
if len(sys.argv) == 1: | |
print('CloudFormation stack required') | |
sys.exit() | |
cloudformation_client = boto3.client('cloudformation') | |
lambda_client = boto3.client('lambda') | |
page = {} | |
# Grab stack from AWS | |
try: | |
stack_resources = cloudformation_client.list_stack_resources( | |
StackName=sys.argv[1] | |
) | |
except Exception as e: | |
print(e) | |
sys.exit() | |
# Grab environment vars from each lambda in the stack | |
for resource in stack_resources['StackResourceSummaries']: | |
if(resource['ResourceType']=='AWS::Lambda::Function'): | |
lambda_config = lambda_client.get_function_configuration( | |
FunctionName=resource['PhysicalResourceId'] | |
) | |
if 'Environment' in lambda_config and 'Variables' in lambda_config['Environment']: | |
page[resource['LogicalResourceId']] = lambda_config['Environment']['Variables'] | |
# Print to console | |
print(json.dumps(page, indent=2)) |
Good work @masudur-rahman-niloy
Ahhh nice @masudur-rahman-niloy !! Thank you!
I was on a youtube channel. like that tool, congrats!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Eric,
Can you see my fork, I've made some changes for using profile names as a second argument. It will also work if the stack has nested stack. So if you pass the root stack's name it will check if the stack has nested stacks and will pull the information of the nested stack. The link is here
https://gist.github.com/masudur-rahman-niloy/7492fddfa60b54da02afd0f52c63b18c