13 lines
393 B
HCL
13 lines
393 B
HCL
terraform {
|
|
required_providers {
|
|
null = {
|
|
# Our version is intentionally fixed so that we have a fixed
|
|
# test case here, though we might have to update this in future
|
|
# if e.g. Terraform stops supporting plugin protocol 5, or if
|
|
# the null provider is yanked from the registry for some reason.
|
|
source = "hashicorp/null"
|
|
version = "3.1.0"
|
|
}
|
|
}
|
|
}
|