-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
47 lines (39 loc) · 887 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
41
42
43
44
45
46
47
variable "region" {
type = string
description = "AWS region"
default = "eu-central-1"
}
variable "instance_type" {
type = string
description = "Komiser EC2 instance type"
default = "t2.medium"
}
variable "key" {
type = string
description = "SSH key pair"
}
variable "owner" {
type = string
description = "Infrastructure creator"
default = "mlabouardy"
}
variable "private_key_path" {
type = string
description = "Path to AWS key pair"
}
variable "ssl_arn" {
type = string
description = "ACM certificate ARN"
}
variable "subnets" {
type = list(any)
description = "Subnets IDs where Komiser will be deployed"
}
variable "domain_name" {
type = string
description = "Route53 domain name"
}
variable "hosted_zone_id" {
type = string
description = "Route53 zone ID"
}