16 lines
321 B
Terraform
16 lines
321 B
Terraform
|
|
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 = {}
|
||
|
|
}
|