variable "talos_version" { default = "v1.8.2" } variable "cluster_name" { description = "Name used for cluster resources, S3 buckets, secrets, etc." 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 "aws_region" { description = "AWS region" default = "us-east-1" } variable "hosted_zone_id" { description = "Route53 hosted zone ID" } 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"] } variable "cert_manager_email" { description = "Email for Let's Encrypt certificate notifications" default = "dumpnetcerts@keane.sh" } variable "state_bucket" { description = "S3 bucket for Terraform remote state (set in backend config, documented here for reference)" default = "iankeane-tfstate" }