-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
37 lines (29 loc) · 987 Bytes
/
variables.tf
File metadata and controls
37 lines (29 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# AWS Configuration
variable "aws_region" {
description = "The AWS region to deploy to (e.g., us-east-1, ap-northeast-2)"
default = "us-east-1"
}
variable "namespace" {
description = "Prefix for all resource names to avoid collisions"
default = "openclaw"
}
variable "instance_type" {
description = "EC2 Instance Type (t3.small is recommended for better performance; free tier eligible for 6 months on new accounts)"
default = "t3.small"
}
variable "disk_size_gb" {
description = "Root volume size in GB (up to 30GB is free tier eligible)"
default = 30
}
variable "disk_type" {
description = "EBS volume type (gp2/gp3 are standard)"
default = "gp2"
}
variable "public_key_path" {
description = "Path to the local public key file to upload to AWS"
default = "~/.ssh/id_rsa.pub"
}
variable "private_key_path" {
description = "Path to the local private key file (for SSH output instructions only)"
default = "~/.ssh/id_rsa"
}