From 972604b721df223a1c90c52bd20f808bbd3b4781 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 22 Aug 2022 16:32:36 -0400 Subject: [PATCH] update --- examples/simple/variables.tf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 examples/simple/variables.tf diff --git a/examples/simple/variables.tf b/examples/simple/variables.tf new file mode 100644 index 0000000..5ad9660 --- /dev/null +++ b/examples/simple/variables.tf @@ -0,0 +1,24 @@ +variable "application_name" { + description = "Appliication name, usually {org}-{project}, which is likely a prefix to the EKS cluster name" + type = string +} + +variable "application_list" { + description = "List of application repositories to create for /{application_name}/{image_name} for those not in image_config" + type = list(string) + default = [] +} + +variable "image_config" { + description = "List of image configuration objects to copy from SOURCE to DESTINATION" + type = list(object({ + name = string, + tag = string, + dest_path = string, + source_registry = string, + source_image = string, + source_tag = string, + enabled = bool, + })) + default = [] +}