terraform {
  required_providers {
    random = {
      source  = "hashicorp/random"
    }
  }
}

resource "random_uuid" "random" {}

output "random_uuid" {
  value = random_uuid.random.id
}
