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.
13 lines
326 B
Terraform
13 lines
326 B
Terraform
locals {
|
|
# SSE algorithm: KMS when a CMK ARN is supplied, else AES256 (SSE-S3).
|
|
sse_algorithm = var.kms_key_arn != null ? "aws:kms" : "AES256"
|
|
|
|
# Tags: merge caller-supplied tags with the module defaults.
|
|
tags = merge(
|
|
{
|
|
"nova:owner" = "nova"
|
|
"nova:environment" = "dev"
|
|
},
|
|
var.tags,
|
|
)
|
|
} |