13 lines
227 B
HCL
13 lines
227 B
HCL
terraform {
|
|
required_version = ">= 1.8.0"
|
|
|
|
required_providers {
|
|
vsphere = {
|
|
source = "hashicorp/vsphere"
|
|
version = ">= 2.5.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Locking Terraform and provider versions prevents pipeline drift.
|