1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
variable "environment" {
description = "Deployment environment name (e.g. prod, staging, dev)"
type = string
}
variable "project" {
description = "Project or workload name used as the primary naming prefix (e.g. hca-platform)"
type = string
}
variable "cost_center" {
description = "Cost center identifier applied to all resource tags for billing allocation"
type = string
}
variable "managed_by" {
description = "Value for the ManagedBy standard tag"
type = string
default = "terraform"
}
variable "region" {
description = "AWS region override; defaults to the region returned by data.aws_region.current when left empty"
type = string
default = ""
}
variable "additional_tags" {
description = "Extra tags merged into the standard tag set before var.tags (lowest precedence)"
type = map(string)
default = {}
}
variable "tags" {
description = "Resource tags to apply to all resources"
type = map(string)
default = {}
}
|