13 lines
216 B
Terraform
13 lines
216 B
Terraform
|
# Terraform version and plugin versions
|
||
|
|
||
|
terraform {
|
||
|
required_version = "~> 0.12.0"
|
||
|
required_providers {
|
||
|
matchbox = "~> 0.3.0"
|
||
|
ct = "~> 0.3.2"
|
||
|
template = "~> 2.1"
|
||
|
null = "~> 2.1"
|
||
|
}
|
||
|
}
|
||
|
|