Skip to content

Instantly share code, notes, and snippets.

@andresvia
Created June 5, 2019 00:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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