Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Aug 22, 2022
1 parent 25304b1 commit 972604b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions examples/simple/variables.tf
Original file line number Diff line number Diff line change
@@ -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 = []
}

0 comments on commit 972604b

Please sign in to comment.