You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error_message="The os_family must be one of 'amazon', 'ubuntu', or 'rhel'."
71
-
}
118
+
variable"allow_ssh_cidr_blocks" {
119
+
description="CIDR blocks allowed to SSH into the Private Runner instance. If empty, no SSH access is allowed."
120
+
type=list(string)
121
+
default=[]
72
122
}
73
123
74
-
variable"os_version" {
75
-
description="Specific OS version (e.g., '20.04' for Ubuntu, '8.5' for RHEL)"
124
+
/*------------------------+
125
+
| EC2 Instance Variables |
126
+
+------------------------*/
127
+
variable"instance_type" {
128
+
description="The EC2 instance type for Private Runner (min 4 vCPU, 8GB RAM recommended)"
76
129
type=string
77
-
default="22.04"
130
+
default="t3.xlarge"
78
131
}
79
132
80
133
variable"ami_id" {
81
-
description="The AMI ID for the Private Runner instance with pre-installed dependencies. If not provided, it will be fetched based on the OS family and version and dependencies will be installed in user-data."
134
+
description=<<EOT
135
+
The AMI ID for the Private Runner instance with pre-installed dependencies.
0 commit comments