-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
71 lines (60 loc) · 1.64 KB
/
variables.tf
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Required
variable "aws_access_key" {
type = string
sensitive = true
description = "AWS access key used for account access"
}
# Required
variable "aws_secret_key" {
type = string
sensitive = true
description = "AWS secret key used for account access"
}
variable "aws_session_token" {
type = string
description = "AWS session token for account access (if using MFA)"
default = ""
}
variable "aws_region" {
type = string
description = "AWS region used for all resources"
default = "us-east-1"
}
variable "prefix" {
type = string
description = "Prefix added to names of all resources"
default = "superorbital-quickstart"
}
variable "instance_type" {
type = string
description = "Instance type used for all EC2 instances"
default = "m5a.large"
}
variable "ami_id" {
type = string
description = "AMI ID to use for the management EC2 instance"
default = ""
}
variable "k3s_kubernetes_version" {
type = string
description = "Kubernetes version to use for k3s management cluster"
default = "v1.29.2+k3s1"
}
variable "capa_version" {
type = string
description = "Cluster API Provider AWS version (format: v0.0.0)"
default = "v2.4.1"
}
variable "capi_version" {
type = string
description = "Cluster API version (format v0.0.0)"
default = "v1.6.3"
}
variable "experimental_features" {
type = list(string)
description = "List of experimental CAPI features to enable, e.g. [\"EXP_CLUSTER_RESOURCE_SET: true\"]"
default = ["EXP_CLUSTER_RESOURCE_SET: true"]
}
locals {
node_username = "ubuntu"
}