UUID

The random_uuid resource allows the creation of random UUIDs.

resource "random_uuid" "uuid" {}

output "uuid" {
    value = resource.random_uuid.uuid.value
}

Last updated