-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
40 lines (33 loc) · 913 Bytes
/
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
variable "subnet-cidr" {
type = string
default = "10.0.1.0/24"
}
variable "domain-name" {
description = "DNS Domain name for IAM policy creation"
type = string
}
variable "hostname" {
description = "Hostname of the rancher server"
type = string
}
variable "ip-allowlist-additional" {
description = "Additional IP ranges for IP allowlist"
type = list(any)
}
variable "rancher-secret-arn" {
description = "AWS Secret Manager ARN for rancher passwords and secret data"
type = string
}
variable "letsencrypt-email" {
description = "Let's encrypt email for certificate notification events"
type = string
}
variable "instance-type" {
description = "The type of instance to use"
type = string
default = "t4g.large"
}
variable "instance-key-name" {
description = "This sets the SSH Key used for the instance"
type = string
}