Skip to content

Instantly share code, notes, and snippets.

@ledakis
Created July 3, 2020 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ledakis/055973ae352fddb7843d80348c8eb4b6 to your computer and use it in GitHub Desktop.
Save ledakis/055973ae352fddb7843d80348c8eb4b6 to your computer and use it in GitHub Desktop.
Gets your keys from github and makes them a list. Handy for cloud-init templates
data "http" "github-keys" {
url = "https://github.com/ledakis.keys"
}
output "keys" {
value = compact(split("\n",data.http.github-keys.body))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment