11e342a9f7
---ci--- project: nova-platform phase: 3 milestone: v1.0 status: complete ---/ci--- P3 complete: 13 L1 primitives + registry + module docs. 68 tests pass. REQ-10,11,13,34 covered.
21 lines
568 B
Terraform
21 lines
568 B
Terraform
variable "distribution_name" {
|
|
type = string
|
|
description = "Name (comment) of the CloudFront distribution."
|
|
}
|
|
|
|
variable "origin_domain" {
|
|
type = string
|
|
description = "Domain name of the origin (e.g. an S3 bucket regional domain or ALB DNS)."
|
|
}
|
|
|
|
variable "tags" {
|
|
type = map(string)
|
|
description = "Additional tags to merge with the module defaults."
|
|
default = {}
|
|
}
|
|
|
|
variable "enabled" {
|
|
type = bool
|
|
description = "Feature flag: enable/disable this module. Set to false to skip resource creation."
|
|
default = true
|
|
} |