Files
nova-platform/modules/l1/cloudfront/terraform/variables.tf
T
CIAgent 11e342a9f7 docs(P03): complete l1-primitives-registry phase
---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.
2026-08-24 17:41:43 +00:00

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
}