17 lines
290 B
Terraform
17 lines
290 B
Terraform
terraform {
|
|
required_providers {
|
|
podman = {
|
|
source = "kreuzwerker/docker"
|
|
version = "~> 3.6.0"
|
|
}
|
|
random = {
|
|
source = "hashicorp/random"
|
|
version = "~> 3.5.1"
|
|
}
|
|
dotenv = {
|
|
source = "germanbrew/dotenv"
|
|
version = "1.2.5"
|
|
}
|
|
}
|
|
}
|