Terraform-IaC/archive/hetzner/template/variables.tf

36 lines
541 B
Terraform
Raw Permalink Normal View History

2023-07-09 17:17:38 +01:00
variable "hcloud_token" {
type = string
sensitive = true
}
variable "environment" {
type = string
}
variable "project_name" {
type = string
default = "project"
}
variable "location" {
type = string
default = "nbg1"
}
locals {
environment_long = lookup(
{
dev = "Development",
tst = "Test",
prd = "Production"
},
var.environment,
"Development"
)
common_labels = {
"Project" = var.project_name
"Owner" = "Oscar"
"Environment" = local.environment_long
}
}