iac_modules/terraform-hcl-standard/aws-cloud/bootstrap/identity/variables.tf
2025-12-24 14:28:19 +08:00

10 lines
340 B
HCL

variable "bootstrap_config_path" {
description = "Path to the bootstrap account configuration YAML"
type = string
validation {
condition = var.bootstrap_config_path != null && trimspace(var.bootstrap_config_path) != ""
error_message = "Set bootstrap_config_path (TF_CONFIG) to the bootstrap YAML file path."
}
}