lade 0.15.1

Automatically load secrets from your preferred vault as environment variables, and clear them once your shell command is over.
1
2
3
4
5
6
7
8
9
10
11
12

variable "current_dir" {
  type = string
}

variable "parent_dir" {
  type = string
}

output "example" {
  value = "${var.parent_dir} ${var.current_dir}"
}