Variables
variable "gallery_info" {
type = object({
artifacts = object({
# Any jobs that define artifacts will be listed in the object
# below. For example, if you have a build job called
# `build`, the block will look like the following:
build = string
})
# A unique identifier for the environment, use to uniquify
# any identifiers for environment objects
env_name = string
# If the job is triggered through a git commit/PR, the sha
# will be listed, otherwise it will be an empty string
git_sha = string
# The git branch name, or an empty string if not triggered
# through a commit/PR
git_branch = string
})
}Last updated