terraform-provider-file/examples/use-cases/local_basic/outputs.tf

12 lines
189 B
HCL

output "file_resource" {
value = jsonencode(file_local.basic)
sensitive = true
}
output "file_data_source" {
value = jsonencode(data.file_local.basic)
sensitive = true
}