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/valid-files/providers-explicit-implied.tf

38 lines
427 B

provider "aws" {
}
provider "template" {
alias = "foo"
}
resource "aws_instance" "foo" {
}
resource "null_resource" "foo" {
}
action "external_test" "foo" {
}
import {
id = "directory/filename"
to = local_file.foo
}
import {
provider = template.foo
id = "directory/foo_filename"
to = local_file.bar
}
terraform {
required_providers {
test = {
source = "hashicorp/test"
}
}
}