beeta/devops/terraform/modules/ssh_keys/variables.tf
2026-01-05 22:54:27 -05:00

15 lines
321 B
HCL

variable "project_name" {
description = "Project name"
type = string
}
variable "environment" {
description = "Environment name"
type = string
}
variable "admin_ssh_public_keys" {
description = "Map of admin SSH public keys (name => public_key)"
type = map(string)
default = {}
}