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/duplicate-local-name/main.tf

24 lines
308 B

terraform {
required_providers {
test = {
source = "hashicorp/test"
}
dupe = {
source = "hashicorp/test"
}
other = {
source = "hashicorp/default"
}
wrong-name = {
source = "hashicorp/foo"
}
}
}
provider "default" {
}
resource "foo_resource" {
}