Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ module "tailscale_subnet_router" {
session_logging_ssm_document_name = var.session_logging_ssm_document_name

ami = var.ami
architecture = var.architecture
instance_type = var.instance_type
max_size = var.max_size
min_size = var.min_size
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ variable "ami" {
EOF
}

variable "architecture" {
default = "arm64"
type = string
description = "The architecture of the AMI (e.g., x86_64, arm64)"
}

variable "instance_type" {
default = "t4g.nano"
type = string
Expand Down