terraform/internal/command/testdata/test/dangling_data_block/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
151 B
Terraform
Raw Permalink Normal View History

variable "input" {
type = string
}
resource "test_resource" "resource" {
value = var.input
}
output "id" {
value = test_resource.resource.id
}