blob: 898a23fdf2517e8b35132eb02ad31f238a857aa0 [file] [log] [blame]
# This test verifies that the provider local name, local config and fqn map
# together properly when the local name does not match the type.
terraform {
required_providers {
arbitrary = {
source = "hashicorp/aws"
}
}
}
# hashicorp/test has required provider config attributes. This "arbitrary"
# provider configuration block should map to hashicorp/test.
provider "arbitrary" {
required_attribute = "bloop"
}
resource "aws_instance" "test" {
provider = "arbitrary"
}