This repository has been archived on 2024-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
iac/terraform.tf

22 lines
402 B
Terraform
Raw Normal View History

2024-06-21 13:43:35 +00:00
terraform {
2024-06-28 16:15:00 +00:00
required_version = "~> 1.6"
2024-06-21 13:43:35 +00:00
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "~>3.0"
}
random = {
source = "hashicorp/random"
version = "~>3.3"
}
ssh = {
source = "matthewbaggett/ssh"
version = "~> 0.1.0"
}
2024-07-03 16:26:56 +00:00
scratch = {
source = "BrendanThompson/scratch"
version = "0.4.0"
}
2024-06-21 13:43:35 +00:00
}
}