Skip to content

Instantly share code, notes, and snippets.

@sblack4
Created June 14, 2020 21:41
Show Gist options
  • Save sblack4/2dad48f56b7ffdd04ab9e16738cfdef8 to your computer and use it in GitHub Desktop.
Save sblack4/2dad48f56b7ffdd04ab9e16738cfdef8 to your computer and use it in GitHub Desktop.
Get a list of all your terraform variables, alphabetized
#!/bin/bash
# requires:
# - https://github.com/hashicorp/terraform-config-inspect
# - jq
# - sort
terraform-config-inspect --json | jq -r '.variables | keys | .[]' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment