16 lines
268 B
Terraform
16 lines
268 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
vsphere = {
|
||
|
source = "hashicorp/vsphere"
|
||
|
version = ">= 1.24.3"
|
||
|
}
|
||
|
null = {
|
||
|
source = "hashicorp/null"
|
||
|
}
|
||
|
template = {
|
||
|
source = "hashicorp/template"
|
||
|
}
|
||
|
}
|
||
|
required_version = ">= 0.13"
|
||
|
}
|