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/command/testdata/test/valid-use-local-backend/no-prior-state/main.tf

19 lines
388 B

variable "input" {
type = string
}
resource "test_resource" "foobar" {
id = "12345"
# Set deterministic ID because this fixture is for testing what happens when there's no prior state
# i.e. this id will otherwise keep changing per test
value = var.input
}
output "test_resource_id" {
value = test_resource.foobar.id
}
output "supplied_input_value" {
value = var.input
}