Skip to content

Instantly share code, notes, and snippets.

@andresvia
Created June 5, 2019 00:24
Show Gist options
  • Save andresvia/a0757d5396e36c10a5dee7ba00f16307 to your computer and use it in GitHub Desktop.
Save andresvia/a0757d5396e36c10a5dee7ba00f16307 to your computer and use it in GitHub Desktop.
module "config" {
source = "git::https://gist.github.com/7ee8813d4f1df942bb21a9386b457888.git//?ref=master"
}
resource "random_pet" "core" {
prefix = join("-", module.config.config)
}
output "core" {
value = random_pet.core.id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment