Are you using your buckets?
python bucketeer.py > my-buckets.csv
Gives you info like this:
Bucket_Name, Number_Items, Creation_Date, Est_Last_Modified
#!/bin/bash | |
terraform-config-inspect --json | jq -r '.variables | keys | .[]' | sort | awk '{printf $1 " = var." $1 "\n"}' |
#!/bin/bash | |
# requires: | |
# - https://github.com/hashicorp/terraform-config-inspect | |
# - jq | |
# - sort | |
terraform-config-inspect --json | jq -r '.variables | keys | .[]' | sort |
find . -type f -name "*.bak" -exec rm -f {} \; |
find . -type f -name "*.tf" -print | xargs sed -i.bak 's/firstName/second_name/g' && rm *.bak |
#!/usr/bin/env python | |
""" | |
sort terraform variables | |
it's easy to do, just follow these steps: | |
python sort_terraform_variables.py variables.tf > sorted_variables.tf | |
mv sorted_variables.tf variables.tf | |
""" | |
from __future__ import print_function | |
import sys |
######################################## | |
# Group Name | |
######################################## |
#!/bin/bash | |
# Ensure we only have two parameters | |
if [ $# -ne 2 ]; | |
then | |
echo 1>&2 "Usage: $0 project-namespace release-name" | |
exit 1 | |
fi |
--- | |
repos: | |
# ============================================= | |
# helm | |
- repo: https://github.com/norwoodj/helm-docs | |
rev: v0.8.0 | |
hooks: | |
- id: helm-docs # adds an auto-generated README with documentation | |
# ============================================= |