modules/template_architecture_definition/variables.tf (23 lines of code) (raw):
variable "starter_module_folder_path" {
type = string
description = "Starter module folder path"
}
variable "architecture_definition_name" {
type = string
description = "Name of the architecture definition"
}
variable "architecture_definition_template_path" {
type = string
default = ""
description = "The path to the architecture definition template file to use."
}
variable "architecture_definition_override_path" {
type = string
default = ""
description = "The path to the architecture definition file to use instead of the default."
}
variable "apply_alz_archetypes_via_architecture_definition_template" {
type = bool
default = true
description = "Toggles assignment of ALZ policies. True to deploy, otherwise false. (e.g true)"
}