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/configs/testdata/error-files/required-providers-toplevel.tf

10 lines
326 B

# A top-level required_providers block is not valid, but we have a specialized
# error for it to hint the user to move it into a terraform block.
required_providers { # ERROR: Invalid required_providers block
}
# This one is valid, and what the user should rewrite the above to be like.
terraform {
required_providers {}
}