terraform/internal/command/testdata/query/with-sensitive-variables/main.tf
Sebastian Rivera 305dba5dcc feat: denote sensitive attribute paths in query start msg
This new field will be consumed in order to redact sensitive values referenced in a list block's input configuration from the query logs. We simply pipe the config schema and the marked values, and include the paths in the query_start log output.
2026-02-27 11:01:23 +01:00

13 lines
172 B
HCL

terraform {
required_providers {
test = {
source = "hashicorp/test"
}
}
}
provider "test" {}
resource "test_instance" "example" {
ami = "ami-12345"
}