-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (52 loc) · 918 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
48
49
50
51
52
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 = ""
}