Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 668 Bytes

carvel_kbld.md

File metadata and controls

29 lines (21 loc) · 668 Bytes

carvel_kbld

carvel_kbld data source provides ability to resolve images references with digests.

Input Attributes

  • files (list of strings) List of file paths (and/or directory paths) to provie to ytt
  • config_yaml (string) Configuration as YAML (multiline strings are indent-trimmed)
  • debug_logs (bool; optional; default=false) Log to /tmp/terraform-provider-carvel.log

Computed Attributes

  • result (string) Output of kbld resolution operation

Example

data "carvel_kbld" "tpl1" {
  config_yaml = <<EOF
    images:
    - image: nginx
    - image: mysql
  EOF
}

output "result" {
  value = "${data.carvel_kbld.tpl1.result}"
}