46 lines
626 B
Terraform
46 lines
626 B
Terraform
|
|
variable "hcloud_token" {
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "cloudflare_api_token" {
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "cloudflare_zone_id" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "cloudflare_account_id" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "ssh_public_key" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "location" {
|
||
|
|
type = string
|
||
|
|
default = "nbg1"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "prod_server_type" {
|
||
|
|
type = string
|
||
|
|
default = "cpx21"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "ops_server_type" {
|
||
|
|
type = string
|
||
|
|
default = "cpx21"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "allowed_ssh_ips" {
|
||
|
|
type = list(string)
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "domain" {
|
||
|
|
type = string
|
||
|
|
default = "writekit.dev"
|
||
|
|
}
|