Skip to content

Instantly share code, notes, and snippets.

View GitToby's full-sized avatar
🦆
Quacking code you have here

Toby Devlin GitToby

🦆
Quacking code you have here
View GitHub Profile
@GitToby
GitToby / list-aws-resource.py
Last active November 14, 2025 21:14
Using Boto, list all resources in an AWS account
# /// script
# https://peps.python.org/pep-0723/
# dependencies = [
# "boto3"
# ]
# ///
import boto3
from botocore.exceptions import ClientError
@GitToby
GitToby / main.tf
Created July 21, 2021 12:43
basic aws networking example
terraform {
required_version = ">= 0.14.9"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.27"
}
}
}
@GitToby
GitToby / post run analysis.ipynb
Created February 19, 2018 13:02
post run analysis (v1)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.