Skip to content
main.tf 205 B
Newer Older
Timo Furrer's avatar
Timo Furrer committed
terraform {
  required_providers {
    random = {
      source  = "hashicorp/random"
      version = "3.1.2"
    }
  }
}

provider "random" {}

resource "random_pet" "random_pet" {
  length = var.length
}