We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46c7571 commit 7685068Copy full SHA for 7685068
main.tf
@@ -55,6 +55,7 @@ module "tailscale_subnet_router" {
55
session_logging_ssm_document_name = var.session_logging_ssm_document_name
56
57
ami = var.ami
58
+ architecture = var.architecture
59
instance_type = var.instance_type
60
max_size = var.max_size
61
min_size = var.min_size
variables.tf
@@ -96,6 +96,12 @@ variable "ami" {
96
EOF
97
}
98
99
+variable "architecture" {
100
+ default = "arm64"
101
+ type = string
102
+ description = "The architecture of the AMI (e.g., x86_64, arm64)"
103
+}
104
+
105
variable "instance_type" {
106
default = "t4g.nano"
107
type = string
0 commit comments