Skip to main content
main.tf105 B
View on GitHub
resource "random_pet" "shared" {
length = 2
}

output "shared_name" {
value = random_pet.shared.id
}