-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
77 lines (58 loc) · 1.2 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
72
73
74
75
76
77
variable "allowed_cidr" {
type = "list"
default = ["0.0.0.0/0"]
description = "A list of CIDR Networks to allow ssh access to."
}
variable "allowed_security_groups" {
type = "list"
default = []
description = "A list of Security Group ID's to allow access to."
}
variable "name" {
default = "bastion"
}
variable "ami" {}
variable "instance_type" {
default = "t2.micro"
}
variable "iam_instance_profile" {}
variable "user_data_file" {
default = "user_data.sh"
}
variable "s3_bucket_name" {}
variable "s3_bucket_uri" {
default = ""
}
variable "ssh_user" {
default = "ubuntu"
}
variable "enable_hourly_cron_updates" {
default = "false"
}
variable "keys_update_frequency" {
default = ""
}
variable "additional_user_data_script" {
default = ""
}
variable "region" {
default = "eu-west-1"
}
variable "vpc_id" {}
variable "security_group_ids" {
description = "Comma seperated list of security groups to apply to the bastion."
default = ""
}
variable "subnet_ids" {
default = []
description = "A list of subnet ids"
}
variable "eip" {
default = ""
}
variable "associate_public_ip_address" {
default = false
}
variable "key_name" {
default = ""
}