You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/earlyconfig/testdata/provider-reqs/child/provider-reqs-child.tf

12 lines
238 B

terraform {
required_providers {
cloud = {
source = "tf.example.com/awesomecorp/happycloud"
}
null = {
# This should merge with the null provider constraint in the root module
version = "2.0.1"
}
}
}