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/command/e2etest/testdata/provider-warnings/main.tf

13 lines
443 B

terraform {
required_providers {
terraform = {
// hashicorp/terraform is published in the registry, but it is
// archived (since it is internal) and returns a warning:
//
// "This provider is archived and no longer needed. The terraform_remote_state
// data source is built into the latest Terraform release."
source = "hashicorp/terraform"
}
}
}