Creature

The random_creature resource allows the creation of random mythical creature names. These can be useful to name entities.

resource "random_creature" "creature" {}

output "creature" {
    value = resource.random_creature.creature.value
}

Last updated