36 lines
641 B
Terraform
36 lines
641 B
Terraform
|
|
variable "talos_version" {
|
||
|
|
default = "v1.8.2"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "cluster_name" {
|
||
|
|
default = "dumpnet"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "instance_type" {
|
||
|
|
default = "t3.medium"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "vpc_id" {
|
||
|
|
default = "vpc-4421b439"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "ami_id" {
|
||
|
|
description = "Talos AMI ID"
|
||
|
|
default = "ami-000f1b0ad9d8ceafd"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "hosted_zone_id" {
|
||
|
|
description = "Route53 hosted zone ID for dumpnet.chat"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "domain" {
|
||
|
|
description = "Base domain for all DNS records"
|
||
|
|
default = "dumpnet.chat"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "dns_records" {
|
||
|
|
description = "List of subdomains to point at the cluster EIP"
|
||
|
|
type = list(string)
|
||
|
|
default = ["argocd"]
|
||
|
|
}
|