Skip to content

Instantly share code, notes, and snippets.

@jayers99
Last active February 9, 2019 18:10
Show Gist options
  • Save jayers99/b34dc1924d9ad0d028c5733d7a362b83 to your computer and use it in GitHub Desktop.
Save jayers99/b34dc1924d9ad0d028c5733d7a362b83 to your computer and use it in GitHub Desktop.
terraform variable statistics
grep -Proh --include \*.tf --exclude-dir=.terraform --exclude-dir=.git '\$\{var\.[\w]+\}' | sort | uniq -c | sort -nr
find ~/tf/ -name *.tf -exec grep -Proh '\$\{var.[\w]+\}' {} \; | sort | uniq -c | sort -nr > ~/temp/varlist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment